diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-03-09 01:42:42 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-03-09 01:42:42 +0100 |
commit | 17c7f7cc7417e87828fb9e87070f94d7e442e937 (patch) | |
tree | 45cedfec4d0350e63d9d2feaef3229dadc5c03d0 /source4/Makefile | |
parent | b44dcae6bb201d4c243672d1fd8877ab17d5c636 (diff) | |
download | samba-17c7f7cc7417e87828fb9e87070f94d7e442e937.tar.gz samba-17c7f7cc7417e87828fb9e87070f94d7e442e937.tar.bz2 samba-17c7f7cc7417e87828fb9e87070f94d7e442e937.zip |
Remove extra line for partial linkage objects, simplify binary handling.
(This used to be commit df899e14cb6cdf9725bedc085649bc1ac8749205)
Diffstat (limited to 'source4/Makefile')
-rw-r--r-- | source4/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/Makefile b/source4/Makefile index bdcdf2507e..3d4743c47f 100644 --- a/source4/Makefile +++ b/source4/Makefile @@ -49,6 +49,8 @@ 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 @@ -75,7 +77,7 @@ endif DEFAULT_HEADERS = $(srcdir)/lib/util/dlinklist.h \ $(srcdir)/version.h -binaries:: $(BIN_PROGS) $(SBIN_PROGS) +binaries:: $(BINARIES) libraries:: $(STATIC_LIBS) $(SHARED_LIBS) modules:: $(PLUGINS) headers:: $(PUBLIC_HEADERS) $(DEFAULT_HEADERS) |