home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / MotifApp / ch2 / Makefile < prev    next >
Encoding:
Makefile  |  1995-05-03  |  492 b   |  25 lines

  1. include ../make.cfg
  2.  
  3. ILIST=-I../ComponentLib
  4. LIBS=../ComponentLib/libcomponent.a  $(XLIBS)
  5.  
  6.  
  7. all:  labeltest  stopwatch pwtest1
  8.  
  9. labeltest: labeltest.o LabeledText.o
  10.     $(CC) -o labeltest labeltest.o LabeledText.o $(LIBS)
  11.  
  12. pwtest1: pwtest1.o Password.o
  13.     $(CC) -o pwtest1 pwtest1.o Password.o $(LIBS)
  14.  
  15. stopwatch: main.o Stopwatch.o Timer.o Face.o  Control.o
  16.     $(CC) -o stopwatch main.o Stopwatch.o Timer.o Face.o Control.o  $(LIBS)
  17.  
  18. clobber:
  19.     rm -f *.o *~*
  20.     rm -f labeltest pwtest1 stopwatch
  21.  
  22.  
  23.  
  24.  
  25.