Vanilla Development Maling List Archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

CVS update: Vanilla



Date:	Friday March 19, 1999 @ 21:43
Author:	ahn

Update of /home/netrek/cvsroot/Vanilla
In directory cvs.castle.real-time.com:/var/tmp/cvs-serv1775

Modified Files:
	Makefile 
Log Message:
Got rid of make -C which breaks non-gmake.


****************************************

Index: Vanilla/Makefile
diff -u Vanilla/Makefile:1.9 Vanilla/Makefile:1.10
--- Vanilla/Makefile:1.9	Thu Mar 18 01:21:24 1999
+++ Vanilla/Makefile	Fri Mar 19 21:43:50 1999
@@ -23,9 +23,9 @@
 	cd tools; make depend
 	cd pledit; make depend
 	cd keycomp; make depend
-	$(MAKE) -C sequencer depend
+	cd sequencer; make depend
 	-@if [ -f res-rsa/Makefile ]; then \
-		make -C res-rsa depend; \
+		(cd res-rsa; make depend) \
 	fi
 	-@if [ -f xsg/Makefile ]; then \
 		cd xsg; echo "	cd xsg; make depend"; make depend; \
@@ -46,7 +46,7 @@
 
 # make the server binaries and such
 server: $(DEP_INCS) rsalib
-	$(MAKE) -C ntserv
+	cd ntserv; $(MAKE)
 
 do_robots: $(DEP_INCS)
 	cd robots; $(MAKE)
@@ -61,8 +61,8 @@
 
 
 rsalib:	$(DEP_INCS)
-	@if [ -f res-rsa/rsa_util.c ]; then \
-	$(MAKE) -C res-rsa ;\
+	-@if [ -f res-rsa/Makefile ]; then \
+		(cd res-rsa; $(MAKE) librsa.a) \
 	fi
 
 utils: $(DEP_INCS) rsalib