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 /misc | |
parent | 033797c0ef831a0fd0a8e7ccf4f014e3476a67de (diff) | |
download | librpm-tizen-10d3b6d5b6784c8a3c1680497af3e0a15e5e884a.tar.gz librpm-tizen-10d3b6d5b6784c8a3c1680497af3e0a15e5e884a.tar.bz2 librpm-tizen-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 'misc')
-rw-r--r-- | misc/Makefile.in | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/misc/Makefile.in b/misc/Makefile.in index 9c9cf38ce..735f804be 100644 --- a/misc/Makefile.in +++ b/misc/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@ @@ -157,8 +157,8 @@ CPPFLAGS = @CPPFLAGS@ LDFLAGS = @LDFLAGS@ libmisc_a_OBJECTS = CFLAGS = @CFLAGS@ -COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LINK = $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ +COMPILE = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) +LINK = $(CC) $(CFLAGS) $(LDFLAGS) -o $@ HEADERS = $(noinst_HEADERS) DIST_COMMON = Makefile.am Makefile.in alloca.c error.c error.h \ @@ -169,7 +169,7 @@ strerror.c strncasecmp.c strspn.c strstr.c strtol.c strtoul.c DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) -TAR = gtar +TAR = tar GZIP = --best DEP_FILES = .deps/alloca.P .deps/error.P .deps/fnmatch.P .deps/getcwd.P \ .deps/getmntent.P .deps/getwd.P .deps/glob.P .deps/inet_aton.P \ @@ -290,6 +290,7 @@ maintainer-clean-depend: info: dvi: check: all + $(MAKE) installcheck: install-exec: @$(NORMAL_INSTALL) @@ -303,19 +304,24 @@ install: install-exec install-data all uninstall: 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: 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-noinstLIBRARIES mostlyclean-compile \ mostlyclean-tags mostlyclean-depend mostlyclean-generic |