Change lib name during make, not install.

This commit is contained in:
Roy Marples
2008-01-13 13:55:23 +00:00
parent 98b865bbc7
commit f755187020
4 changed files with 11 additions and 15 deletions

View File

@@ -33,6 +33,6 @@ install: realinstall ${INSTALLAFTER}
# A lot of scripts don't have anything to clean
# Also, some rm implentation require a file argument regardless of error
# so we ensure that it has a bogus argument
CLEANFILES?= .bogus
CLEANFILES+= ${OBJS}
clean:
rm -f ${OBJS} ${CLEANFILES}
if test -n "${CLEANFILES}"; then rm -f ${CLEANFILES}; fi