home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / mint / ksh_util / makefile < prev    next >
Encoding:
Makefile  |  1991-02-17  |  392 b   |  17 lines

  1. #    I suspect that this is Horribly specific to gnu make, but ...
  2.  
  3. CFLAGS = -ansi -Wall -O -fomit-frame-pointer -fcombine-regs -fstrength-reduce
  4. LFLAGS = -s -liio
  5.  
  6. TARGET = dm.tos ps.tos df.ttp mem.tos du.ttp
  7.  
  8. all : $(TARGET)
  9.  
  10. $(filter %.ttp, $(TARGET)): %.ttp: %.o
  11.     gcc $< $(LFLAGS) -o $@
  12.     toglclr $@
  13.  
  14. $(filter %.tos, $(TARGET)): %.tos: %.o
  15.     gcc $< $(LFLAGS) -o $@
  16.     toglclr $@
  17.