home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gccfindhit-1.2-src.tgz / tar.out / contrib / GccFindHit / Makefile.in < prev    next >
Makefile  |  1996-09-28  |  769b  |  36 lines

  1. srcdir =    @srcdir@
  2. VPATH =        @srcdir@
  3.  
  4. prefix =    @prefix@
  5. exec_prefix =    @exec_prefix@
  6.  
  7. bindir =    $(exec_prefix)/bin
  8.  
  9. INSTALL =    @INSTALL@
  10. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  11.  
  12. CC =        @CC@
  13. DEFS =        @DEFS@ $(ENDIANNESS)
  14. CFLAGS =    @CFLAGS@
  15. LDFLAGS =    @LDFLAGS@
  16.  
  17. #uncomment the following line if the host is a little endian machine
  18. #(the Amiga is *not* little endian :-)
  19. #ENDIANNESS = -DLITTLE_ENDIAN
  20.  
  21. #Comment the following line if your compiler doesn't like it
  22. #or if you absolutely want ixemul
  23. AFLAGS = -noixemul
  24.  
  25. all:        GccFindHit
  26.  
  27. GccFindHit.o:    GccFindHit.c defs.h
  28.         $(CC) -c $(CFLAGS) $(AFLAGS) -Wall $(DEFS) $(srcdir)/GccFindHit.c
  29.  
  30. GccFindHit:    GccFindHit.o
  31.         $(CC) $(LDFLAGS) $(AFLAGS) GccFindHit.o -o GccFindHit
  32.  
  33. install:
  34.         $(INSTALL_PROGRAM) GccFindHit $(bindir)/GccFindHit
  35.  
  36.