Update DIST_FILES for making snapshots

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@2607 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 1997-10-31 22:04:49 +00:00
parent 6473920814
commit 69d86d8223
12 changed files with 37 additions and 12 deletions

View file

@ -34,7 +34,7 @@ example.patch \
volunteers \
tasks
RCS_FILES = Makefile Makefile.postamble
RCS_FILES = GNUmakefile Makefile.postamble
DIST_FILES = $(RCS_FILES) $(ADMIN_FILES)
-include Makefile.preamble

View file

@ -1,3 +1,16 @@
Fri Oct 31 17:00:29 1997 Adam Fedor <fedor@doc.com>
* GNUmakefile (DIST_FILES): Update files.
* src/GNUmakefile: Likewise.
* checks/GNUmakefile: Likewise.
* examples/GNUmakefile: Likewise.
* doc/GNUmakefile: Likewise.
* admin/GNUmakefile: Likewise.
* NSCharacterSets/GNUmakefile: Likewise.
* NSTimeZones/GNUmakefile: Likewise.
* Tools/GNUmakefile: Likewise.
* Tools/Makefile.postamble (copy-dist): New target.
Fri Oct 31 15:16:46 1997 Adam Fedor <fedor@doc.com>
* NSBundle.README: Removed obsolete file.

View file

@ -58,7 +58,7 @@ HTML_FILES =
DVI_FILES = gnustep-base.dvi objective-c.dvi
TOP_DOC_FILES = README INSTALL NEWS
RCS_FILES = $(TEXI_FILES) Makefile Makefile.postamble
RCS_FILES = $(TEXI_FILES) GNUmakefile Makefile.postamble
DIST_FILES = $(RCS_FILES) texinfo.tex $(TEXT_FILES)
-include Makefile.preamble

View file

@ -49,16 +49,14 @@ first-client_OBJC_FILES = first-client.m
second-server_OBJC_FILES = second-server.m
second-client_OBJC_FILES = second-client.m
SRCS = $(TOOL_NAME:=.m)
SRCS = $(TEST_TOOL_NAME:=.m)
HDRS = \
first-server.h \
second-server.h \
second-client.h
DIST_FILES = $(SRCS) $(HDRS) Makefile Makefile.postamble Makefile.preamble \
Makefile.example.in \
configure.example.in \
DIST_FILES = $(SRCS) $(HDRS) GNUmakefile Makefile.postamble Makefile.preamble \
custom-zone.m
-include Makefile.preamble

View file

@ -32,7 +32,7 @@ include ./Version
PACKAGE_NAME = gstep-base
DIST_FILES = \
Makefile Makefile.postamble config.mak.in \
GNUmakefile Makefile.postamble config.mak.in \
configure.in aclocal.m4 acconfig.h \
configure.bat INSTALL.WIN32 \
config/config.nested.c config/config.nextcc.h config/config.nextrt.m \

View file

@ -42,7 +42,7 @@ uppercaseCharSet.dat \
whitespaceCharSet.dat \
whitespaceandnlCharSet.dat
RCS_FILES = Makefile Makefile.postamble
RCS_FILES = GNUmakefile Makefile.postamble
DIST_FILES = $(RCS_FILES) $(CHARSET_FILES) README.CharSet
INSTALL_FILES = $(CHARSET_FILES) README.CharSet

View file

@ -33,7 +33,7 @@ resourcedir = $(GNUSTEP_RESOURCES)/gnustep
TIMEZONE_ARCHIVE = \
NSTimeZones.tar
DIST_FILES = Makefile Makefile.postamble $(TIMEZONE_ARCHIVE)
DIST_FILES = GNUmakefile Makefile.postamble $(TIMEZONE_ARCHIVE)
-include Makefile.preamble

View file

@ -455,7 +455,7 @@ HEADERS_INSTALL = $(GNU_HEADERS) \
$(BASE_HEADERS)
DIST_FILES = \
Makefile Makefile.preamble Makefile.postamble AUTHORS \
GNUmakefile Makefile.preamble Makefile.postamble AUTHORS \
include/config.h.in include/preface.h.in \
include/config-win32.h \
$(GNU_MFILES) \

View file

@ -186,7 +186,7 @@ include/o_map.h: include/o_map_bas.h include/o_map_cbs.h include/o_hash.h
TAGS: $(DIST_FILES)
etags $(DIST_FILES)
AUTHORS: Makefile
AUTHORS: GNUmakefile
rm -f AUTHORS
@echo Finding file authors...
@echo 'For the legal record, here is a list of who wrote what:'>AUTHORS

View file

@ -152,7 +152,7 @@ MyCategory.h \
SecondClass.h
DIST_FILES = $(SRCS) $(HDRS) $(DYNAMIC_MFILES) $(DYNAMIC_HFILES) \
Makefile Makefile.preamble Makefile.postamble
GNUmakefile Makefile.preamble Makefile.postamble
-include Makefile.preamble

View file

@ -35,6 +35,13 @@ dread_OBJC_FILES = dread.m
dremove_OBJC_FILES = dremove.m
dwrite_OBJC_FILES = dwrite.m
SOURCES = gdomap.c dread.m dremove.m dwrite.m
HEADERS = gdomap.h
DIST_FILES = GNUmakefile Makefile.preamble Makefile.postamble \
$(SOURCES) $(HEADERS)
-include Makefile.preamble
include $(GNUSTEP_SYSTEM_ROOT)/Makefiles/objc.make

View file

@ -44,3 +44,10 @@ before-install::
# Things to do after checking
# after-check::
copy-dist: $(DIST_FILES)
mkdir ../snap/Tools
for f in $(DIST_FILES); do \
cp $$f ../snap/Tools ; \
done