home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-05-03 | 492 b | 25 lines |
- include ../make.cfg
-
- ILIST=-I../ComponentLib
- LIBS=../ComponentLib/libcomponent.a $(XLIBS)
-
-
- all: labeltest stopwatch pwtest1
-
- labeltest: labeltest.o LabeledText.o
- $(CC) -o labeltest labeltest.o LabeledText.o $(LIBS)
-
- pwtest1: pwtest1.o Password.o
- $(CC) -o pwtest1 pwtest1.o Password.o $(LIBS)
-
- stopwatch: main.o Stopwatch.o Timer.o Face.o Control.o
- $(CC) -o stopwatch main.o Stopwatch.o Timer.o Face.o Control.o $(LIBS)
-
- clobber:
- rm -f *.o *~*
- rm -f labeltest pwtest1 stopwatch
-
-
-
-
-