Added a utils directory, and changed the Win32 makefiles for Borland C++ to copy the resulting executable into the utils directory.

This commit is contained in:
skarg
2006-08-03 18:02:28 +00:00
parent 94f7f58cb8
commit 73df2e1abb
12 changed files with 54 additions and 11 deletions
+3
View File
@@ -91,6 +91,9 @@ $(C_LIB_DIR)\CW32MT.lib
all : bcc32.cfg $(PRODUCT_EXE)
install: $(PRODUCT_EXE)
copy $(PRODUCT_EXE) ..\..\utils\$(PRODUCT_EXE)
# Linker specific: the link below is for BCC linker/compiler. If you link
# with a different linker - please change accordingly.
#
+3
View File
@@ -87,6 +87,9 @@ $(C_LIB_DIR)\CW32MT.lib
all : bcc32.cfg $(PRODUCT_EXE)
install: $(PRODUCT_EXE)
copy $(PRODUCT_EXE) ..\..\utils\$(PRODUCT_EXE)
# Linker specific: the link below is for BCC linker/compiler. If you link
# with a different linker - please change accordingly.
#
+3
View File
@@ -91,6 +91,9 @@ $(C_LIB_DIR)\CW32MT.lib
all : bcc32.cfg $(PRODUCT_EXE)
install: $(PRODUCT_EXE)
copy $(PRODUCT_EXE) ..\..\utils\$(PRODUCT_EXE)
# Linker specific: the link below is for BCC linker/compiler. If you link
# with a different linker - please change accordingly.
#
+3
View File
@@ -91,6 +91,9 @@ $(C_LIB_DIR)\CW32MT.lib
all : bcc32.cfg $(PRODUCT_EXE)
install: $(PRODUCT_EXE)
copy $(PRODUCT_EXE) ..\..\utils\$(PRODUCT_EXE)
# Linker specific: the link below is for BCC linker/compiler. If you link
# with a different linker - please change accordingly.
#
+3
View File
@@ -98,6 +98,9 @@ $(C_LIB_DIR)\CW32MT.lib
all : $(BCC_CFG) $(PRODUCT_EXE)
install: $(PRODUCT_EXE)
copy $(PRODUCT_EXE) ..\..\utils\$(PRODUCT_EXE)
# Linker specific: the link below is for BCC linker/compiler. If you link
# with a different linker - please change accordingly.
#
+3
View File
@@ -98,6 +98,9 @@ $(C_LIB_DIR)\CW32MT.lib
all : bcc32.cfg $(PRODUCT_EXE)
install: $(PRODUCT_EXE)
copy $(PRODUCT_EXE) ..\..\utils\$(PRODUCT_EXE)
# Linker specific: the link below is for BCC linker/compiler. If you link
# with a different linker - please change accordingly.
#
+3
View File
@@ -88,6 +88,9 @@ $(C_LIB_DIR)\CW32MT.lib
all : bcc32.cfg $(PRODUCT_EXE)
install: $(PRODUCT_EXE)
copy $(PRODUCT_EXE) ..\..\utils\$(PRODUCT_EXE)
# Linker specific: the link below is for BCC linker/compiler. If you link
# with a different linker - please change accordingly.
#
+3
View File
@@ -91,6 +91,9 @@ $(C_LIB_DIR)\CW32MT.lib
all : bcc32.cfg $(PRODUCT_EXE)
install: $(PRODUCT_EXE)
copy $(PRODUCT_EXE) ..\..\utils\$(PRODUCT_EXE)
# Linker specific: the link below is for BCC linker/compiler. If you link
# with a different linker - please change accordingly.
#
+3
View File
@@ -96,6 +96,9 @@ $(C_LIB_DIR)\CW32MT.lib
all : bcc32.cfg $(PRODUCT_EXE)
install: $(PRODUCT_EXE)
copy $(PRODUCT_EXE) ..\..\utils\$(PRODUCT_EXE)
# Linker specific: the link below is for BCC linker/compiler. If you link
# with a different linker - please change accordingly.
#
+3
View File
@@ -88,6 +88,9 @@ $(C_LIB_DIR)\CW32MT.lib
all : $(BCC_CFG) $(PRODUCT_EXE)
install: $(PRODUCT_EXE)
copy $(PRODUCT_EXE) ..\..\utils\$(PRODUCT_EXE)
# Linker specific: the link below is for BCC linker/compiler. If you link
# with a different linker - please change accordingly.
#
+3
View File
@@ -90,6 +90,9 @@ $(C_LIB_DIR)\CW32MT.lib
all : bcc32.cfg $(PRODUCT_EXE)
install: $(PRODUCT_EXE)
copy $(PRODUCT_EXE) ..\..\utils\$(PRODUCT_EXE)
# Linker specific: the link below is for BCC linker/compiler. If you link
# with a different linker - please change accordingly.
#
+21 -11
View File
@@ -3,7 +3,7 @@
all: readprop writeprop readfile writefile server dcc reinit \
whois whohas timesync
@echo "utilities are in demo/x directories"
@echo "demo utilities are in utils directory"
clean: \
demo/readprop/makefile.b32 \
@@ -60,69 +60,79 @@ clean: \
readprop: demo/readprop/makefile.b32
cd demo/readprop
make -i -f makefile.b32 clean
make -f makefile.b32
make -f makefile.b32 all
make -f makefile.b32 install
cd ..
cd ..
writeprop: demo/writeprop/makefile.b32
cd demo/writeprop
make -i -f makefile.b32 clean
make -f makefile.b32
make -f makefile.b32 all
make -f makefile.b32 install
cd ..
cd ..
readfile: demo/readfile/makefile.b32
cd demo/readfile
make -i -f makefile.b32 clean
make -f makefile.b32
make -f makefile.b32 all
make -f makefile.b32 install
cd ..
cd ..
writefile: demo/writefile/makefile.b32
cd demo/writefile
make -i -f makefile.b32 clean
make -f makefile.b32
make -f makefile.b32 all
make -f makefile.b32 install
cd ..
cd ..
server: demo/server/makefile.b32
cd demo/server
make -i -f makefile.b32 clean
make -f makefile.b32
make -f makefile.b32 all
make -f makefile.b32 install
cd ..
cd ..
dcc: demo/dcc/makefile.b32
cd demo/dcc
make -i -f makefile.b32 clean
make -f makefile.b32
make -f makefile.b32 all
make -f makefile.b32 install
cd ..
cd ..
reinit: demo/reinit/makefile.b32
cd demo/reinit
make -i -f makefile.b32 clean
make -f makefile.b32
make -f makefile.b32 all
make -f makefile.b32 install
cd ..
cd ..
whois: demo/whois/makefile.b32
cd demo/whois
make -i -f makefile.b32 clean
make -f makefile.b32
make -f makefile.b32 all
make -f makefile.b32 install
cd ..
cd ..
whohas: demo/whohas/makefile.b32
cd demo/whohas
make -i -f makefile.b32 clean
make -f makefile.b32
make -f makefile.b32 all
make -f makefile.b32 install
cd ..
cd ..
timesync: demo/timesync/makefile.b32
cd demo/timesync
make -i -f makefile.b32 clean
make -f makefile.b32
make -f makefile.b32 all
make -f makefile.b32 install
cd ..
cd ..