quakeforge-old/Makefile.in
Nelson Rush 8da551b601 i've added cesarb's fix:
top-level Makefile has @src_dir@, right thing is @srcdir@, and some tabs seem tohave been converted to spaces.
1999-12-30 23:50:31 +00:00

38 lines
730 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
for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir $@ || exit; \
done
%:
@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