home *** CD-ROM | disk | FTP | other *** search
-
- #
- # Makefile for the irit2ray poly data display program.
- #
-
- include ../makeflag.unx
-
- all: irit2ray irit2nff dat2irit
-
-
- IRIT2RAY_OBJS = irit2ray.o
-
- IRIT2NFF_OBJS = irit2nff.o
-
- DAT2IRIT_OBJS = dat2irit.o
-
-
- irit2ray: $(IRIT2RAY_OBJS)
- $(CC) $(CFLAGS) -o irit2ray $(IRIT2RAY_OBJS) $(LIBS) -lm
-
- irit2nff: $(IRIT2NFF_OBJS)
- $(CC) $(CFLAGS) -o irit2nff $(IRIT2NFF_OBJS) $(LIBS) -lm
-
- dat2irit: $(DAT2IRIT_OBJS)
- $(CC) $(CFLAGS) -o dat2irit $(DAT2IRIT_OBJS) $(LIBS) -lm
-
- install: irit2ray irit2nff dat2irit
- mv -f irit2ray $(BIN_DIR)
- mv -f irit2nff $(BIN_DIR)
- mv -f dat2irit $(BIN_DIR)
-
- # Dependencies starts here - do not touch, generated automatically.
-