home *** CD-ROM | disk | FTP | other *** search
- #
- # This is the make file for the iritfltr dir using DJGCC on the IBMPC.
- #
- # Gershon Elber, Aug 1990
- #
-
- !include "..\makeflag.djg"
-
- all: irit2ray.exe irit2nff.exe dat2irit.exe
-
-
- IRIT2RAY_OBJS = irit2ray.o
-
- IRIT2NFF_OBJS = irit2nff.o
-
- DAT2IRIT_OBJS = dat2irit.o
-
-
- irit2ray.exe: $(IRIT2RAY_OBJS)
- $(CC) $(CFLAGS) -o irit2ray @&&!
- $(IRIT2RAY_OBJS) $(LIBS) -lm
- !
- strip irit2ray
- aout2exe irit2ray
-
- irit2nff.exe: $(IRIT2NFF_OBJS)
- $(CC) $(CFLAGS) -o irit2nff @&&!
- $(IRIT2NFF_OBJS) $(LIBS) -lm
- !
- strip irit2nff
- aout2exe irit2nff
-
- dat2irit.exe: $(DAT2IRIT_OBJS)
- $(CC) $(CFLAGS) -o dat2irit @&&!
- $(DAT2IRIT_OBJS) $(LIBS) -lm
- !
- strip dat2irit
- aout2exe dat2irit
-
- install: irit2ray.exe irit2nff.exe dat2irit.exe
- copy irit2ray.exe $(BIN_DIR_DOS)
- del irit2ray.exe
- copy irit2nff.exe $(BIN_DIR_DOS)
- del irit2nff.exe
- copy dat2irit.exe $(BIN_DIR_DOS)
- del dat2irit.exe
-
- # Dependencies starts here - do not touch, generated automatically.
-