diff options
author | ewt <devnull@localhost> | 1997-04-28 20:45:05 +0000 |
---|---|---|
committer | ewt <devnull@localhost> | 1997-04-28 20:45:05 +0000 |
commit | 84de5ba32e199f4ee0e6e09b7ab6b822dfebf746 (patch) | |
tree | bf435647511c3e44a1bc9aeef90a0923adb969c6 /Makefile.in | |
parent | 0db7dadc02864b676f21a91af2bd8be85983ab29 (diff) | |
download | rpm-84de5ba32e199f4ee0e6e09b7ab6b822dfebf746.tar.gz rpm-84de5ba32e199f4ee0e6e09b7ab6b822dfebf746.tar.bz2 rpm-84de5ba32e199f4ee0e6e09b7ab6b822dfebf746.zip |
- changed LIBRPMRC_FILENAME, LIBRPMALIAS_FILENAME, RPMNLSDIR
directories to @sysconfdir@, @sysconfdir@, and @datadir@ to
better conform with autoconf
- set RPM_INSTALL_PREFIX environment variable when running
verify scripts
- beginnings of SCO support (though I suspect it will take one
or two more iterations to get it right)
- switched to CVS and updated some Makefile rules
- look for gethostbyname() instead of gethostname() in -nsl
(this could break some things)
- added check for strcasecmp() in -lucb on systems which don't
have strcasecmp() in libc
- don't build -static on hpux10
- don't try and NLS empty strings
- changed index() call to strchr() in macro code
- include <time.h> in build/spec.c for various platforms
- added update-po rule to po/Makefile.in
- updated de.po (thanks to Karl Eichwalder)
CVS patchset: 1554
CVS date: 1997/04/28 20:45:05
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 21 |
1 files changed, 6 insertions, 15 deletions
diff --git a/Makefile.in b/Makefile.in index d4a20e26b..516decec3 100644 --- a/Makefile.in +++ b/Makefile.in @@ -12,7 +12,7 @@ installprefix=$(ROOT) #LIBEFENCE = -lefence -RCSVERSION = $(subst .,-,$(VERSION)) +CVSTAG = $(subst .,-,$(VERSION)) ################################### Leave this stuff alone @@ -35,7 +35,7 @@ INSTSUBDIRS = lib @PO@ OTHERSUBDIRS = docs autodeps OBJS = rpm.o query.o install.o verify.o checksig.o ftp.o url.o @GETTEXTSTUB@ PROGS = @RPM@ rpm2cpio -LOADLIBES = -lbuild -lrpm -lmisc @LIBS@ @LIBINTL@ @LIBDL@ +LOADLIBES = -lbuild $(topdir)/lib/librpm.a -lmisc @LIBS@ @LIBINTL@ @LIBDL@ SOURCES = $(subst .o,.c,$(OBJS)) @@ -150,23 +150,14 @@ depend: (cd $$d; $(MAKE) $@) ;\ done -co: - co RCS/*,v - for d in $(SUBDIRS) $(OTHERSUBDIRS); do \ - (cd $$d; co RCS/*,v) ;\ - done - noconfig: find . -name "Makefile" -exec rm {} \; rm -f *gz *rpm config.* -rcstag: - rcs -q -N$(RCSVERSION): RCS/*,v - for d in $(SUBDIRS) $(OTHERSUBDIRS); do \ - (cd $$d; rcs -q -N$(RCSVERSION): RCS/*,v) ;\ - done +cvstag: + cvs tag $(CVSTAG) . -archive: rcstag +archive: cvstag @echo " " @echo "I hope you checked everything out and made sure it builds" @echo "maybe someday Erik will get around to making that automatic." @@ -177,7 +168,7 @@ archive: rcstag @cd /tmp/rpm-$(VERSION); \ make distclean; \ rm -f *.tar.gz; \ - find . -name "RCS" -exec rm {} \; + rm -rf CVS; \ @cd /tmp; tar czSpf rpm-$(VERSION).tar.gz rpm-$(VERSION) @rm -rf /tmp/rpm-$(VERSION) @cp /tmp/rpm-$(VERSION).tar.gz . |