diff options
author | ewt <devnull@localhost> | 1998-12-16 21:58:53 +0000 |
---|---|---|
committer | ewt <devnull@localhost> | 1998-12-16 21:58:53 +0000 |
commit | 10d3b6d5b6784c8a3c1680497af3e0a15e5e884a (patch) | |
tree | 1cc948eb6a0724ce736b0fb7dd80bb9820b0ce0c /scripts | |
parent | 033797c0ef831a0fd0a8e7ccf4f014e3476a67de (diff) | |
download | rpm-10d3b6d5b6784c8a3c1680497af3e0a15e5e884a.tar.gz rpm-10d3b6d5b6784c8a3c1680497af3e0a15e5e884a.tar.bz2 rpm-10d3b6d5b6784c8a3c1680497af3e0a15e5e884a.zip |
first pass at new transaction api; basic installing/removing works
fine but I wouldn't push it much harder then that
CVS patchset: 2603
CVS date: 1998/12/16 21:58:53
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Makefile.in | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/scripts/Makefile.in b/scripts/Makefile.in index 84d883621..3215de722 100644 --- a/scripts/Makefile.in +++ b/scripts/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated automatically by automake 1.3b from Makefile.am +# Makefile.in generated automatically by automake 1.3 from Makefile.am # Copyright (C) 1994, 1995, 1996, 1997, 1998 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation @@ -34,7 +34,7 @@ mandir = @mandir@ includedir = @includedir@ oldincludedir = /usr/include -DESTDIR = +DISTDIR = pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ @@ -138,7 +138,7 @@ DIST_COMMON = Makefile.am Makefile.in DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) -TAR = gtar +TAR = tar GZIP = --best all: Makefile $(SCRIPTS) @@ -192,6 +192,7 @@ distdir: $(DISTFILES) info: dvi: check: all + $(MAKE) installcheck: install-exec: @$(NORMAL_INSTALL) @@ -205,20 +206,25 @@ install: install-exec install-data all uninstall: uninstall-configSCRIPTS install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' INSTALL_SCRIPT='$(INSTALL_PROGRAM)' install + $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' INSTALL_SCRIPT='$(INSTALL_PROGRAM)' install installdirs: - $(mkinstalldirs) $(DESTDIR)$(configdir) + $(mkinstalldirs) $(DATADIR)$(configdir) mostlyclean-generic: + -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f Makefile $(CONFIG_CLEAN_FILES) + -rm -f Makefile $(DISTCLEANFILES) -rm -f config.cache config.log stamp-h stamp-h[0-9]* + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: + -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) + -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) mostlyclean: mostlyclean-generic clean: clean-generic mostlyclean |