diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-04-14 14:51:57 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-04-14 14:51:57 +0200 |
commit | f800cf250f079ab1e1bc1051c34d1d1061187447 (patch) | |
tree | c25a11f5162d27471a89ddd94ce89eb749450f00 /source4/Makefile | |
parent | 7cf29ac84e2f45dfc56d5e46678a96527a38a1c1 (diff) | |
download | samba-f800cf250f079ab1e1bc1051c34d1d1061187447.tar.gz samba-f800cf250f079ab1e1bc1051c34d1d1061187447.tar.bz2 samba-f800cf250f079ab1e1bc1051c34d1d1061187447.zip |
Move standard make compilation rules to build/make.
(This used to be commit ceda3312a98b069d0711f3cb33de3ae71e91ebaa)
Diffstat (limited to 'source4/Makefile')
-rw-r--r-- | source4/Makefile | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/source4/Makefile b/source4/Makefile index ab3ef47fed..8c74b4899d 100644 --- a/source4/Makefile +++ b/source4/Makefile @@ -19,6 +19,25 @@ BNLD_FLAGS = $(LDFLAGS) $(SYS_LDFLAGS) HOSTCC_FLAGS = -D_SAMBA_HOSTCC_ $(CFLAGS) HOSTLD_FLAGS = $(LDFLAGS) $(SYS_LDFLAGS) +$(srcdir)/version.h: $(srcdir)/VERSION + @$(SHELL) script/mkversion.sh VERSION $(srcdir)/version.h $(srcdir)/ + +.DEFAULT_GOAL := all + +ifneq ($(automatic_deps),yes) +ALL_PREDEP = proto +.NOTPARALLEL: +endif + +regen_version:: + @$(SHELL) script/mkversion.sh VERSION $(srcdir)/version.h $(srcdir)/ + +clean_pch:: + @echo "Removing precompiled headers" + @-rm -f include/includes.h.gch + +pch:: clean_pch include/includes.h.gch + .DEFAULT_GOAL := all ifneq ($(automatic_dependencies),yes) @@ -26,9 +45,12 @@ ALL_PREDEP = proto .NOTPARALLEL: endif -include rules.mk +include build/make/rules.mk +include build/make/python.mk include data.mk +BINARIES += $(BIN_PROGS) $(SBIN_PROGS) + DEP_FILES = $(patsubst %.ho,%.hd,$(patsubst %.o,%.d,$(ALL_OBJS))) \ include/includes.d @@ -55,7 +77,7 @@ endif DEFAULT_HEADERS = $(srcdir)/lib/util/dlinklist.h \ $(srcdir)/version.h -binaries:: +binaries:: $(BINARIES) libraries:: $(STATIC_LIBS) $(SHARED_LIBS) modules:: $(PLUGINS) headers:: $(PUBLIC_HEADERS) $(DEFAULT_HEADERS) |