home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / i / iritsm3s.zip / iritfltr / makefile.djg < prev    next >
Makefile  |  1992-03-01  |  938b  |  49 lines

  1. #
  2. # This is the make file for the iritfltr dir using DJGCC on the IBMPC.
  3. #
  4. #                Gershon Elber, Aug 1990
  5. #
  6.  
  7. !include "..\makeflag.djg"
  8.  
  9. all: irit2ray.exe irit2nff.exe dat2irit.exe
  10.  
  11.  
  12. IRIT2RAY_OBJS    = irit2ray.o
  13.  
  14. IRIT2NFF_OBJS    = irit2nff.o
  15.  
  16. DAT2IRIT_OBJS    = dat2irit.o
  17.  
  18.  
  19. irit2ray.exe:    $(IRIT2RAY_OBJS)
  20.     $(CC) $(CFLAGS) -o irit2ray @&&!
  21. $(IRIT2RAY_OBJS) $(LIBS) -lm
  22. !
  23.     strip irit2ray
  24.     aout2exe irit2ray
  25.  
  26. irit2nff.exe:    $(IRIT2NFF_OBJS)
  27.     $(CC) $(CFLAGS) -o irit2nff @&&!
  28. $(IRIT2NFF_OBJS) $(LIBS) -lm
  29. !
  30.     strip irit2nff
  31.     aout2exe irit2nff
  32.  
  33. dat2irit.exe:    $(DAT2IRIT_OBJS)
  34.     $(CC) $(CFLAGS) -o dat2irit @&&!
  35. $(DAT2IRIT_OBJS) $(LIBS) -lm
  36. !
  37.     strip dat2irit
  38.     aout2exe dat2irit
  39.  
  40. install: irit2ray.exe irit2nff.exe dat2irit.exe
  41.     copy irit2ray.exe $(BIN_DIR_DOS)
  42.     del  irit2ray.exe
  43.     copy irit2nff.exe $(BIN_DIR_DOS)
  44.     del  irit2nff.exe
  45.     copy dat2irit.exe $(BIN_DIR_DOS)
  46.     del  dat2irit.exe
  47.  
  48. # Dependencies starts here - do not touch, generated automatically.
  49.