* builds/compiler/ansi-cc.mk (CLEAN_LIBRARY): Fix rule and

conditional.
This commit is contained in:
Werner Lemberg 2000-11-26 10:12:00 +00:00
parent 27695e5dbf
commit d1e9249b63
2 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2000-11-26 Werner Lemberg <wl@gnu.org>
* builds/compiler/ansi-cc.mk (CLEAN_LIBRARY): Fix rule and
conditional.
2000-11-23 Werner Lemberg <wl@gnu.org>
* src/type1/t1load.c (parse_subrs, parse_charstrings): Use decrypt

View File

@ -73,9 +73,10 @@ ANSIFLAGS :=
# Library linking
#
ifndef
CLEAN_LIBRARY = $(DELETE) $(subst $(SEP),$(HOSTSEP),$(PROJECT_LIBRARY) $(NO_OUTPUT)
ifndef CLEAN_LIBRARY
CLEAN_LIBRARY = $(DELETE) $(subst $(SEP),$(HOSTSEP),$(PROJECT_LIBRARY)) \
$(NO_OUTPUT)
endif
LINK_LIBRARY = $(AR) -r $@ $(OBJECTS_LIST)
LINK_LIBRARY = $(AR) -r $@ $(OBJECTS_LIST)
# EOF