mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-10 06:31:56 +00:00
63 lines
1.5 KiB
Makefile
63 lines
1.5 KiB
Makefile
srcdir = @srcdir@
|
|
top_builddir = .
|
|
|
|
HAVE_UDP = @HAVE_UDP@
|
|
|
|
ifeq ($(HAVE_UDP),yes)
|
|
SUBDIRS = common qw_client qw_server uquake
|
|
else
|
|
SUBDIRS = common uquake
|
|
endif
|
|
|
|
DESTDIR =
|
|
|
|
all: Makefile
|
|
@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
|
|
rm -f rpm/{rpmmacros,build_rpm,quakeforge-*.tar.gz,quakeforge.spec}
|
|
rm -rf rpm/{BUILD,RPMS,SOURCES,SPECS,SRPMS}
|
|
find . -name \*~ | xargs rm -f
|
|
find . -name \*.bak | xargs rm -f
|
|
find . -name '.#*' | xargs rm -f
|
|
find . -name '#*#' | xargs rm -f
|
|
find . -name core -type f | xargs rm -f
|
|
rm -rf targets
|
|
rm -rf rpm/{BUILD,SPECS,RPMS,SOURCES,SRPMS}
|
|
for dir in $(SUBDIRS); do \
|
|
$(MAKE) -C $$dir $@ || exit; \
|
|
done
|
|
|
|
clean-autoconf mrproper: distclean
|
|
rm -f common/config.h.in Rules.mk
|
|
rm -f configure
|
|
|
|
%:
|
|
@for dir in $(SUBDIRS); do \
|
|
$(MAKE) -C $$dir $@ || exit; \
|
|
done
|
|
|
|
|
|
changelog:
|
|
./tools/cvs2cl/cvs2cl.pl
|
|
|
|
# Code to automatically re-configure, only runs if you are compiling in the
|
|
# source directory
|
|
|
|
config.status: $(srcdir)/configure
|
|
$(SHELL) ./config.status --recheck
|
|
|
|
$(srcdir)/configure: $(srcdir)/configure.in $(srcdir)/acconfig.h
|
|
(cd $(srcdir) && ./bootstrap || true)
|
|
|
|
CONFIG_SRC = Makefile.in Rules.mk.in qw_client/Makefile.in \
|
|
qw_server/Makefile.in uquake/Makefile.in common/Makefile.in \
|
|
rpm/build_rpm.in rpm/quakeforge.spec.in
|
|
|
|
$(patsubst %.in,%,$(CONFIG_SRC)): configure $(patsubst %.in,$(srcdir)/%.in,$(CONFIG_SRC))
|
|
$(SHELL) ./config.status --recheck
|
|
$(SHELL) ./config.status
|