INSTALLDIR=	/LocalApps

.SUFFIXES: .m .o .c .psw
.c.o:
	cc -O -g -Wall -c $*.c -o $*.o
.m.o:
	cc -O -g -Wall -c $*.m -o $*.o
.psw.h:
	pswrap -a -h $*.h -o $*.c $*.psw
.psw.o:
	pswrap -a -h $*.h -o $*.c $*.psw
	cc -O -g -Wall -c $*.c -o $*.o

RegularPolyhedraView.o: RegularPolyhedraViewPart.o RegularPolyhedraViewWraps.o \
						RegularPolyhedraView.h
	ld -x -r -o RegularPolyhedraView.o RegularPolyhedraViewPart.o RegularPolyhedraViewWraps.o

install: RegularPolyhedraView.o
	mkdirs $(INSTALLDIR)/BackSpace.app; \
	cp RegularPolyhedraView.o $(INSTALLDIR)/BackSpace.app
