# # Clearcase: @@/main/5 # VersionId: Tau 4.2.0 # ######################################################################## # # # makefile to build makegen.exe with the Borland C++ Builder # # # ######################################################################## ######################################################################## # # # Section 1: Tool dependent stuff # # # ######################################################################## TOOL=makegen.exe CC=bcc32 CC_FLAGS=-P- -w- -c -WC -H- -DMAKEGEN LD=bcc32 LD_FLAGS= ######################################################################## # # # Section 2: targets # # # ######################################################################## default: $(TOOL) $(TOOL): makegen.o $(LD) $(LD_FLAGS) makegen.obj makegenbcb.lib -e$(TOOL) ######################################################################## # # # Section 3: Dependencies # # # ######################################################################## makegen.o: makegen.c makegen.h $(CC) $(CC_FLAGS) makegen.c -omakegen.obj