mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-10 06:31:56 +00:00
233d0af85f
checked out tree to something ./configure'able.
45 lines
899 B
Makefile
45 lines
899 B
Makefile
SUBDIRS = qw_client qw_server uquake
|
|
SRC_DIR = @srcdir@
|
|
|
|
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
|
|
|
|
|
|
# Code to automatically re-configure, only runs if you are compiling in the
|
|
# source directory
|
|
ifeq ($(SRC_DIR),.)
|
|
configure: configure.in
|
|
autoconf
|
|
|
|
Makefile: Makefile.in configure
|
|
./configure
|
|
|
|
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
|