diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-01-30 17:03:10 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-01-30 17:38:40 +0100 |
commit | 94cb0835ca690cc7eb115693e672ea9a662fc671 (patch) | |
tree | 6993393c964fc87b917b54773fbe0afc6cd7726e /source4/Makefile | |
parent | 1f2b5ea97c7957f4f49fdea67960e7c08888e505 (diff) | |
download | samba-94cb0835ca690cc7eb115693e672ea9a662fc671.tar.gz samba-94cb0835ca690cc7eb115693e672ea9a662fc671.tar.bz2 samba-94cb0835ca690cc7eb115693e672ea9a662fc671.zip |
s4:build: kill DEFAULT_HEADERS variable
metze
Diffstat (limited to 'source4/Makefile')
-rw-r--r-- | source4/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/source4/Makefile b/source4/Makefile index 7d4540ae6a..b342d671f6 100644 --- a/source4/Makefile +++ b/source4/Makefile @@ -145,12 +145,11 @@ endif clean:: @find ../lib ../libcli ../librpc ../nsswitch -name '*.o' -o -name '*.ho' | xargs rm -f -DEFAULT_HEADERS = $(srcdir)/../lib/util/dlinklist.h \ - $(srcdir)/version.h +PUBLIC_HEADES += $(srcdir)/version.h libraries:: $(STATIC_LIBS) $(SHARED_LIBS) modules:: $(PLUGINS) -headers:: $(PUBLIC_HEADERS) $(DEFAULT_HEADERS) +headers:: $(PUBLIC_HEADERS) manpages:: $(MANPAGES) all:: showflags $(ALL_PREDEP) binaries modules pythonmods libraries headers everything:: all @@ -233,7 +232,7 @@ installlib:: $(SHARED_LIBS) $(STATIC_LIBS) installdirs #@$(SHELL) $(srcdir)/script/installlib.sh $(DESTDIR)$(libdir) "$(STLIBEXT)" $(STATIC_LIBS) installheader:: headers installdirs - @srcdir=$(srcdir) builddir=$(builddir) $(PERL) $(srcdir)/script/installheader.pl $(DESTDIR)$(includedir) $(PUBLIC_HEADERS) $(DEFAULT_HEADERS) + @srcdir=$(srcdir) builddir=$(builddir) $(PERL) $(srcdir)/script/installheader.pl $(DESTDIR)$(includedir) $(PUBLIC_HEADERS) installdat:: installdirs @$(SHELL) $(srcdir)/script/installdat.sh $(DESTDIR)$(datadir) $(srcdir) |