home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / emulate / resgrep0.lha / ResGrep03b / source / Makefile < prev    next >
Makefile  |  1992-06-02  |  455b  |  18 lines

  1.  
  2. CFLAGS= -O2
  3.  
  4. OBJS= resgrep.o resources.o export.o list.o utils.o exportedit.o settings.o \
  5.     output.o
  6.  
  7. resgrep: ${OBJS}
  8.     gcc -o resgrep ${OBJS} -lg++ -lc -lamiga
  9.  
  10. resgrep.o:   resgrep.cc resources.h utils.h
  11. resources.o: resources.cc resources.h utils.h export.h
  12. utils.o:     utils.cc utils.h
  13. export.o:    export.cc utils.h export.h
  14. exportedit.o: exportedit.cc utils.h export.h
  15. settings.o:  settings.cc export.h resgrep.h
  16. output.o:    output.cc resgrep.h
  17.  
  18.