mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Include $(srcdir)/../Makeconf.
(RCS_FILES): New variable. (install, uninstall): New targets. (copy-dist): Converted to new scheme. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@442 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
05b1202322
commit
c8736503fd
1 changed files with 10 additions and 4 deletions
|
@ -39,6 +39,8 @@ LIBS = -L$(srcdir)/.. -lobjects @LIBOBJC@ @LIBS@ -lm
|
|||
|
||||
#### End of system configuration section. ####
|
||||
|
||||
include $(srcdir)/../Makeconf
|
||||
|
||||
NEXT_NEXT_INCLUDES = -I/usr/include
|
||||
OBJECTS_NEXT_INCLUDES = -I$(srcdir)/../objects/next-include
|
||||
NEXT_INCLUDES = @NEXT_INCLUDES@
|
||||
|
@ -83,7 +85,8 @@ server.h
|
|||
|
||||
EXCS = $(SRCS:.m=)
|
||||
|
||||
DISTFILES = $(SRCS) $(HDRS) Makefile.in NXStringTable.example
|
||||
RCS_FILES = $(SRCS) $(HDRS) Makefile.in NXStringTable.example
|
||||
DIST_FILES = NXStringTable.example
|
||||
|
||||
all: $(EXCS)
|
||||
|
||||
|
@ -138,6 +141,9 @@ nsdictionary: nsdictionary.o $(srcdir)/../libobjects.a
|
|||
#nsarchiving: nsarray.o $(srcdir)/../libobjects.a
|
||||
# $(LINK_CMD)
|
||||
|
||||
install:
|
||||
uninstall:
|
||||
|
||||
echo-excs:
|
||||
@echo $(EXCS)
|
||||
|
||||
|
@ -155,9 +161,9 @@ distclean: clean
|
|||
realclean: distclean
|
||||
rm -f TAGS
|
||||
|
||||
copy-dist: $(DISTFILES)
|
||||
mkdir $(srcdir)/../`cat $(srcdir)/../.fname`/checks
|
||||
ln $(DISTFILES) $(srcdir)/../`cat $(srcdir)/../.fname`/checks
|
||||
copy-dist: $(DIST_FILES)
|
||||
mkdir $(srcdir)/../snap/checks
|
||||
ln $(DIST_FILES) $(srcdir)/../snap/checks
|
||||
|
||||
Makefile: Makefile.in
|
||||
cd $(srcdir)/..; $(SHELL) config.status
|
||||
|
|
Loading…
Reference in a new issue