+Wed Dec 15 16:08:47 CET 1999 Wichert Akkerman <wakkerma@debian.org>
+
+ * autogen.sh: copy gettextm4, lcmessage.m4 and progtest.m4 to automake/
+ for systems without gettext installed
+ * Makefile.in: remove the gettext-macros in distclean
+ * utils/Makefile.in: fix clean target, link md5sum and start-stop-daemon
+ with optlib
+ * optlib/*: getopt implementation for systems without GNU getopt.
+
Wed Dec 15 00:18:30 CET 1999 Wichert Akkerman <wakkerma@debian.org>
* configure.in: Add option to disable building dselect
-
VPATH = @srcdir@
srcdir = @srcdir@
+top_srcdir = @top_srcdir@
VERSION = $(shell cat verion-nr)
include Makefile.conf
-SUBDIRS = include lib dpkg-deb split scripts utils main \
- utils doc @DSELECTDIR@ po methods
+SUBDIRS = include lib optlib dpkg-deb split scripts utils main \
+ utils @DSELECTDIR@ po methods doc
all: version.h all-recursive
distclean: clean distclean-recursive
rm -f Makefile.conf Makefile config.cache config.h config.log config.status
+ rm -f automake/gettext.m4 automake/progtest.m4 automake/lcmessage.m4
version.h: version-nr
echo "#define DPKG_VERSION \"$(VERSION)\" /* This line modified by Makefile */" > version.h
AC_INIT(include/dpkg.h.in)
AC_CONFIG_HEADER(config.h)
+
DSELECTDIR="dselect"
AC_ARG_WITH(dselect,
[ --with-dselect the dselect package-management frontend],
dpkg-deb/Makefile
split/Makefile
lib/Makefile
+optlib/Makefile
doc/Makefile
doc/ja/Makefile
scripts/Makefile
MD5_OBJECTS = $(patsubst %.c, %.o, $(MD5_SOURCES))
MD5_MANPAGES = md5sum.1
-GENFILES = $(SSD_OBJECTS) start-stop-daemon
+GENFILES = $(SSD_OBJECTS) start-stop-daemon \
+ $(MD5_OBJECTS) md5sum
.PHONY: all
all:: start-stop-daemon md5sum
$(mkinstalldirs) $(DESTDIR)/$(man1dir)
$(INSTALL_DATA) $(srcdir)/$(MD5_MANPAGES) $(DESTDIR)/$(man1dir)
-start-stop-daemon: $(SSD_OBJECTS)
+start-stop-daemon: $(SSD_OBJECTS) ../optlib/libopt.a
-md5sum: $(MD5_OBJECTS)
+md5sum: $(MD5_OBJECTS) ../optlib/libopt.a