diff options
author | Ben Collins <bcollins@debian.org> | 2001-02-15 16:32:48 +0000 |
---|---|---|
committer | Ben Collins <bcollins@debian.org> | 2001-02-15 16:32:48 +0000 |
commit | 4746ad095816eee0dfecbd64ce5bea2f60122648 (patch) | |
tree | 8d3467a524f4930fee090f4d90fd10a0bdbda777 /optlib | |
parent | 98a62bd4b06ae8c0fa66105ff522c03222639e1e (diff) | |
download | dpkg-4746ad095816eee0dfecbd64ce5bea2f60122648.tar.gz |
* utils/Makefile.in: Do not use libopt.a, since libdpkg.a not includes those
objects
* optlib/Makefile.in: do not generate libopt.a
* lib/Makefile.in: build libdpkg.a to include the objects from optlib
Diffstat (limited to 'optlib')
-rw-r--r-- | optlib/Makefile.in | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/optlib/Makefile.in b/optlib/Makefile.in index c618589d4..e8632045f 100644 --- a/optlib/Makefile.in +++ b/optlib/Makefile.in @@ -7,14 +7,11 @@ include ../Makefile.conf SOURCES = getopt.c getopt1.c long-options.c closeout.c obstack.c OBJECTS = $(patsubst %.c, %.o, $(SOURCES)) -GENFILES = $(OBJECTS) libopt.a +GENFILES = $(OBJECTS) .PHONY: all -all:: libopt.a +all:: $(OBJECTS) -libopt.a: $(OBJECTS) - $(AR) r $@ $^ - .PHONY: install install:: all |