Snapshots and releases work again.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@2457 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 1997-09-27 15:26:51 +00:00
parent 1e4f967138
commit 516ad3fad5
15 changed files with 411 additions and 74 deletions

View file

@ -69,7 +69,6 @@ Collection.m \
ConnectedCoder.m \
Connection.m \
Coder.m \
Connection.m \
CStream.m \
Decoder.m \
DelegatePool.m \
@ -377,7 +376,6 @@ hpux-load.h \
null-load.h \
simple-load.h \
NSCallBacks.h \
NSHost.m \
gdomap.c gdomap.h \
tzfile.h
@ -456,12 +454,11 @@ HEADERS_INSTALL = $(GNU_HEADERS) \
$(BASE_HEADERS)
DIST_FILES = \
Makefile.in AUTHORS Makefile.sed.nt \
Makefile Makefile.preamble Makefile.postamble AUTHORS \
include/config.h.in include/preface.h.in \
include/config-win32.h \
$(GNU_MFILES) \
$(GNU_CFILES) \
$(GNU_HEADERS) \
$(GNU_OTHER_SRCFILES) \
$(NEXTSTEP_MFILES) \
$(NEXTSTEP_CFILES) \
@ -470,10 +467,13 @@ DIST_FILES = \
$(NEXTSTEP_OTHER_SRCFILES) \
$(BASE_MFILES) \
$(BASE_CFILES) \
$(BASE_HEADERS) \
$(BASE_OTHER_SRCFILES) \
$(UNICODE_HEADERS)
GENERATED_HFILES = \
dynamic-load.h \
include/preface.h
# The C source files to be compiled
C_FILES = $(GNU_CFILES) $(NEXTSTEP_CFILES) $(NEXTSTEP_DERIVED_CFILES) \
$(BASE_CFILES)

View file

@ -36,7 +36,7 @@
#
# Things to do before compiling
before-all:: gnustep/base Foundation
before-all:: gnustep/base Foundation $(GENERATED_HFILES)
# Things to do after compiling
# after-all::
@ -180,7 +180,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.in
AUTHORS: Makefile
rm -f AUTHORS
@echo Finding file authors...
@echo 'For the legal record, here is a list of who wrote what:'>AUTHORS
@ -196,9 +196,16 @@ AUTHORS: Makefile.in
copy-dist: $(DIST_FILES)
mkdir ../snap/src
mkdir ../snap/src/include
mkdir ../snap/src/Foundation
mkdir ../snap/src/objc
mkdir ../snap/src/unicode
for file in $(DIST_FILES); do \
ln $$file ../snap/src/$$file ; \
done
for file in $(GNU_HEADERS); do \
ln ./include/$$file ../snap/src/include/$$file ; \
done
for file in $(BASE_HEADERS); do \
ln $$file ../snap/src/include/`basename $$file` ; \
done
ln AUTHORS ../snap