home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD2.bin / bbs / gnu / termcap-1.2-src.lha / termcap-1.2 / tests / Makefile.in next >
Makefile  |  1995-01-11  |  500b  |  36 lines

  1. #### Start of system configuration section. ####
  2.  
  3. srcdir =    @srcdir@
  4. VPATH =        @srcdir@
  5.  
  6. CC =        @CC@
  7.  
  8. CFLAGS =    @CFLAGS@
  9.  
  10. #### End system configuration section ####
  11.  
  12. OTHER_CFLAGS =    -I$(srcdir)
  13. ALL_CFLAGS =    $(OTHER_CFLAGS) $(CFLAGS)
  14.  
  15. .c.o:
  16.         $(CC) -c $(ALL_CFLAGS) $<
  17.  
  18. all :        tc1 tc2 tc3
  19.  
  20. tc1 :        tc1.o
  21.         $(CC) -o tc1 tc1.o ../libtermcap.a
  22.  
  23. tc2 :        tc2.o
  24.         $(CC) -o tc2 tc2.o ../libtermcap.a
  25.  
  26. tc3 :        tc3.o
  27.         $(CC) -o tc3 tc3.o ../libtermcap.a
  28.  
  29. clean:
  30.         rm -f *! *~
  31.  
  32. clobber:    clean
  33.         rm -f tc1 tc2 tc3 *.o
  34.  
  35.  
  36.