home *** CD-ROM | disk | FTP | other *** search
- #
- # This make file is for the irit2ray utility for Borland C++ 2.0
- # (Using Ansi C though).
- #
- # Only large model is created here.
- #
- # Gershon Elber, July 1990
- #
-
- # Works only on TC++ 1.0 make and up - swap out make before invoking command.
- .SWAP
-
- # Includes generic definitions.
- !include "..\makeflag.dos"
-
- IRIT2RAY_OBJS = irit2ray.obj
-
- IRIT2NFF_OBJS = irit2nff.obj
-
- DAT2IRIT_OBJS = dat2irit.obj
-
-
- all: irit2ray.exe irit2nff.exe dat2irit.exe
-
-
- irit2ray.exe: $(IRIT2RAY_OBJS)
- $(LNK) @&&!
- $(TC_LIB_DIR)\c0l+
- $(IRIT2RAY_OBJS)
- irit2ray.exe
- irit2ray.map
- $(LIBS)
- !$(LFLAGS)
-
-
- irit2nff.exe: $(IRIT2NFF_OBJS)
- $(LNK) @&&!
- $(TC_LIB_DIR)\c0l+
- $(IRIT2NFF_OBJS)
- irit2nff.exe
- irit2nff.map
- $(LIBS)
- !$(LFLAGS)
-
-
- dat2irit.exe: $(DAT2IRIT_OBJS)
- $(LNK) @&&!
- $(TC_LIB_DIR)\c0l+
- $(DAT2IRIT_OBJS)
- dat2irit.exe
- dat2irit.map
- $(LIBS)
- !$(LFLAGS)
-
-
- install: irit2ray.exe irit2nff.exe dat2irit.exe
- copy irit2ray.exe $(BIN_DIR)
- del irit2ray.exe
- copy irit2nff.exe $(BIN_DIR)
- del irit2nff.exe
- copy dat2irit.exe $(BIN_DIR)
- del dat2irit.exe
-
- # Dependencies starts here - do not touch, generated automatically.
-