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.unx < prev   
Makefile  |  1992-02-02  |  649b  |  33 lines

  1.  
  2. #
  3. # Makefile for the irit2ray poly data display program.
  4. #
  5.  
  6. include ../makeflag.unx
  7.  
  8. all: irit2ray irit2nff dat2irit
  9.  
  10.  
  11. IRIT2RAY_OBJS    = irit2ray.o
  12.  
  13. IRIT2NFF_OBJS    = irit2nff.o
  14.  
  15. DAT2IRIT_OBJS    = dat2irit.o
  16.  
  17.  
  18. irit2ray:    $(IRIT2RAY_OBJS)
  19.     $(CC) $(CFLAGS) -o irit2ray $(IRIT2RAY_OBJS) $(LIBS) -lm
  20.  
  21. irit2nff:    $(IRIT2NFF_OBJS)
  22.     $(CC) $(CFLAGS) -o irit2nff $(IRIT2NFF_OBJS) $(LIBS) -lm
  23.  
  24. dat2irit:    $(DAT2IRIT_OBJS)
  25.     $(CC) $(CFLAGS) -o dat2irit $(DAT2IRIT_OBJS) $(LIBS) -lm
  26.  
  27. install: irit2ray irit2nff dat2irit
  28.     mv -f irit2ray $(BIN_DIR)
  29.     mv -f irit2nff $(BIN_DIR)
  30.     mv -f dat2irit $(BIN_DIR)
  31.  
  32. # Dependencies starts here - do not touch, generated automatically.
  33.