home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-06-05 | 569 b | 28 lines |
- INSTALLDIR= $(HOME)/Library/BackSpaceViews
-
- DYNAMODULES= TeapotView.BackO
-
- THINGSTOREMOVE= TeapotView.o Teapot.o
-
- .SUFFIXES: .m .o .c .psw
-
- .m.o:
- cc -O -g -Wall -c $*.m -o $*.o
-
- all::
- $(MAKE) $(DYNAMODULES)
-
- TeapotView.BackO: TeapotView.o Teapot.o TeapotView.h
- ld -x -r -o TeapotView.BackO TeapotView.o Teapot.o
-
- clean::
- rm -rf $(DYNAMODULES) $(THINGSTOREMOVE)
-
-
- install:: all install-views
-
- install-views::
- mkdirs $(INSTALLDIR)/TeapotView.BackModule
- cp TeapotView.BackO $(INSTALLDIR)/TeapotView.BackModule
- cp -r teapot.nib $(INSTALLDIR)/TeapotView.BackModule
-