mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-10 14:42:06 +00:00
4ebf133971
code alteration. Cut my build time from 20 minutes down to about 5 from an autoconf-clean tree.
55 lines
1.1 KiB
Makefile
55 lines
1.1 KiB
Makefile
SUBDIRS = qw_client qw_server uquake
|
|
SRC_DIR = @srcdir@
|
|
|
|
DESTDIR =
|
|
|
|
ANONCVS=:pserver:anonymous@cvs.quake.sourceforge.net:/cvsroot/quake
|
|
|
|
all:
|
|
@for dir in $(SUBDIRS); do \
|
|
$(MAKE) -C $$dir $@ || exit; \
|
|
done
|
|
|
|
distclean:
|
|
rm -f config.cache config.log config.status Makefile
|
|
rm -f common/config.h
|
|
find . -name \*~ | xargs rm -f
|
|
find . -name \*.bak | xargs rm -f
|
|
for dir in $(SUBDIRS); do \
|
|
$(MAKE) -C $$dir $@ || exit; \
|
|
done
|
|
|
|
clean-autoconf mrproper: distclean
|
|
rm -f common/config.h.in
|
|
rm -f configure
|
|
|
|
%:
|
|
@for dir in $(SUBDIRS); do \
|
|
$(MAKE) -C $$dir $@ || exit; \
|
|
done
|
|
|
|
|
|
changelog:
|
|
@echo "CVS will ask for a passwd, press enter"
|
|
cvs -d$(ANONCVS) login
|
|
./tools/cvs2cl/cvs2cl.pl -g -d$(ANONCVS)
|
|
|
|
# Code to automatically re-configure, only runs if you are compiling in the
|
|
# source directory
|
|
ifeq ($(SRC_DIR),.)
|
|
configure: configure.in acconfig.h
|
|
./bootstrap
|
|
|
|
Makefile: Makefile.in configure \
|
|
qw_client/Makefile qw_server/Makefile uquake/Makefile
|
|
|
|
qw_client/Makefile: qw_client/Makefile.in configure
|
|
./configure
|
|
|
|
qw_server/Makefile: qw_server/Makefile.in configure
|
|
./configure
|
|
|
|
uquake/Makefile: uquake/Makefile.in configure
|
|
./configure
|
|
endif
|
|
|