ICU-200 OS400 makefile updates

X-SVN-Rev: 1384
This commit is contained in:
Steven R. Loomis 2000-05-15 22:32:11 +00:00
parent 4ef6b3889d
commit 0a042c3f86
40 changed files with 168 additions and 102 deletions

View file

@ -674,14 +674,6 @@ resolution of CRTCPPMOD used by the icc compiler
mh-os400 configure file is used.
<UL>
<LI> Run 'configure --host=as400-os400'
<LI> Change the TARGET entries in
<TT>common/Makefile.in, i18n/Makefile.in, tools/toolutil/Makefile.in </TT> so that instead
of <TT>TARGET=<U>libicu-</U>uc.$(SO)</TT> they read
<TT>TARGET=<B>$(LIBICU)</B>uc.$(SO)</TT> [remove hyphens]
<LI> Change Makefile.in's (under source/tools) that have
LIBICU-TOOLUTIL so that it follows the other LIBICU variables on
the link line:
<TT>$(LIBICU-UC)&nbsp;$(LIBICU-TOOLUTIL)&nbsp;@LIBS@&nbsp;@LIB_M@</TT>
<LI> The 'clean' and 'install' targets will not work without changes
because of symbolic links. To delete the target module, program, or service programs replace <TT>rm -rf</TT> with <B>$(RMV)</B>, and in the
library installation targets (install-library) change

View file

@ -39,6 +39,11 @@ INSTALL_SCRIPT = @INSTALL_SCRIPT@
AUTOCONF = @AUTOCONF@
## Platform-specific setup
@host_frag@
## Pacakge information
PACKAGE = @PACKAGE@
VERSION = @VERSION@
@ -117,19 +122,19 @@ doc:
done; \
echo "Generating html documentation..."; \
doc++ -H -d $$tmpdir/html $$tmpdir/include/*.h > /dev/null 2>&1; \
rm -rf $$tmpdir
$(RMV) $$tmpdir
dist-local:
clean-local:
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
distclean-local: clean-local
rm -f Makefile config.cache config.log config.status config/Makefile
rm -f common/unicode/platform.h common/icucfg.h
$(RMV) Makefile config.cache config.log config.status config/Makefile
$(RMV) common/unicode/platform.h common/icucfg.h
ifeq ($(patsubst ..%,,@RELATIVEDATADIR@),@RELATIVEDATADIR@)
rm -f @DATABUILDDIR@/../source/test/testdata/*.goo @DATABUILDDIR@/../source/test/testdata/*.txt @DATABUILDDIR@/../source/test/testdata/*.uni
rm -f @DATABUILDDIR@/UnicodeData-$(UNICODE_VERSION).txt @DATABUILDDIR@/thaidict.brk
$(RMV) @DATABUILDDIR@/../source/test/testdata/*.goo @DATABUILDDIR@/../source/test/testdata/*.txt @DATABUILDDIR@/../source/test/testdata/*.uni
$(RMV) @DATABUILDDIR@/UnicodeData-$(UNICODE_VERSION).txt @DATABUILDDIR@/thaidict.brk
endif
check-local:

View file

@ -1,4 +1,4 @@
#******************************************************************************
#******************************************************************************
#
# Copyright (C) 1999, International Business Machines
# Corporation and others. All Rights Reserved.
@ -106,7 +106,7 @@ install-local: install-headers install-library
install-library: all-local
$(mkinstalldirs) $(DESTDIR)$(libdir)
$(INSTALL) $(TARGET) $(DESTDIR)$(libdir)/$(TARGET)
$(INSTALL-S) $(TARGET) $(DESTDIR)$(libdir)/$(TARGET)
install-headers:
$(mkinstalldirs) $(DESTDIR)$(includedir)/unicode
@ -118,11 +118,11 @@ install-headers:
dist-local:
clean-local:
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
rm -f $(OBJECTS) $(TARGET)
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
$(RMV) $(OBJECTS) $(TARGET)
distclean-local: clean-local
rm -f Makefile $(DEPS)
$(RMV) Makefile $(DEPS)
check-local:

View file

@ -33,6 +33,10 @@ LIBICU = libicu-
## Shared object suffix
SO= a
RMV = rm -rf
## Platform command to remove or move executable target
INSTALL-S = $(INSTALL)
## Link commands to link to ICU libs
LIBICU-UC= -L$(top_builddir)/common -licu-uc

View file

@ -29,6 +29,11 @@ LIBICU = libicu-
## Shared object suffix
SO= so
## Force removal [for make clean]
RMV = rm -rf
## Platform command to move executable target
INSTALL-S = $(INSTALL)
## Link commands to link to ICU libs
LIBICU-UC= -L$(top_builddir)/common -licu-uc
LIBICU-I18N= -L$(top_builddir)/i18n -licu-i18n

View file

@ -32,6 +32,11 @@ LIBICU = libicu-
## Shared object suffix
SO= sl
## Force removal [for make clean]
RMV = rm -rf
## Platform command to move executable target
INSTALL-S = $(INSTALL)
## Link commands to link to ICU libs
LIBICU-UC= -L$(top_builddir)/common -licu-uc
LIBICU-I18N= -L$(top_builddir)/i18n -licu-i18n

View file

@ -39,6 +39,11 @@ LIBICU = libicu-
## Shared object suffix
SO= sl
## Force removal [for make clean]
RMV = rm -rf
## Platform command to move executable target
INSTALL-S = $(INSTALL)
## Link commands to link to ICU libs
LIBICU-UC= -L$(top_builddir)/common -licu-uc
LIBICU-I18N= -L$(top_builddir)/i18n -licu-i18n

View file

@ -39,6 +39,11 @@ LIBICU = libicu-
## Shared object suffix
SO= so
## Force removal [for make clean]
RMV = rm -rf
## Platform command to move executable target
INSTALL-S = $(INSTALL)
## Link commands to link to ICU libs
LIBICU-UC= -L$(top_builddir)/common -licu-uc
LIBICU-I18N= -L$(top_builddir)/i18n -licu-i18n

View file

@ -29,6 +29,11 @@ LIBICU = libicu-
## Shared object suffix
SO= so
## Force removal [for make clean]
RMV = rm -rf
## Platform command to move executable target
INSTALL-S = $(INSTALL)
## Link commands to link to ICU libs
LIBICU-UC= -L$(top_builddir)/common -licu-uc
LIBICU-I18N= -L$(top_builddir)/i18n -licu-i18n

View file

@ -61,6 +61,11 @@ LIBICU = libicu-
## Shared object suffix (switch to dll for shared library build)
SO= dll
## Force removal [for make clean]
RMV = rm -rf
## Platform command to move executable target
INSTALL-S = $(INSTALL)
## Link commands to link to ICU libs
LIBICU-UC= $(top_builddir)/common/libicu-uc.x
LIBICU-I18N= $(top_builddir)/i18n/libicu-i18n.x

View file

@ -30,6 +30,11 @@ LIBICU = libicu-
## Shared object suffix
SO= so
## Force removal [for make clean]
RMV = rm -rf
## Platform command to move executable target
INSTALL-S = $(INSTALL)
## Link commands to link to ICU libs
LIBICU-UC= -L$(top_builddir)/common -licu-uc
LIBICU-I18N= -L$(top_builddir)/i18n -licu-i18n

View file

@ -31,6 +31,11 @@ LIBICU = libicu-
## Shared object suffix
SO= so
## Force removal [for make clean]
RMV = rm -rf
## Platform command to move executable target
INSTALL-S = $(INSTALL)
## Link commands to link to ICU libs
LIBICU-UC= -L$(top_builddir)/common -licu-uc
LIBICU-I18N= -L$(top_builddir)/i18n -licu-i18n

View file

@ -29,6 +29,11 @@ LIBICU = libicu-
## Shared object suffix
SO= so
## Force removal [for make clean]
RMV = rm -rf
## Platform command to move executable target
INSTALL-S = $(INSTALL)
## Link commands to link to ICU libs
LIBICU-UC= -L$(top_builddir)/common -licu-uc
LIBICU-I18N= -L$(top_builddir)/i18n -licu-i18n

View file

@ -30,6 +30,11 @@ LIBICU = libicu-
## Shared object suffix
SO= so
## Force removal [for make clean]
RMV = rm -rf
## Platform command to move executable target
INSTALL-S = $(INSTALL)
## Link commands to link to ICU libs
LIBICU-UC= -L$(top_builddir)/common -licu-uc
LIBICU-I18N= -L$(top_builddir)/i18n -licu-i18n

View file

@ -42,6 +42,11 @@ INSTALL_SCRIPT = @INSTALL_SCRIPT@
PACKAGE = @PACKAGE@
VERSION = @VERSION@
## Platform-specific setup
@host_frag@
## Files to remove for 'make clean'
CLEANFILES = *~
@ -89,12 +94,12 @@ install-local:
dist-local:
clean-local:
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
check-local:
distclean-local: clean-local
rm -f Makefile
$(RMV) Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
cd $(top_builddir) \

View file

@ -88,7 +88,7 @@ install-local: all-local install-headers install-library
install-library: all-local
$(mkinstalldirs) $(DESTDIR)$(libdir)
$(INSTALL) $(TARGET) $(DESTDIR)$(libdir)/$(TARGET)
$(INSTALL-S) $(TARGET) $(DESTDIR)$(libdir)/$(TARGET)
install-headers:
$(mkinstalldirs) $(DESTDIR)$(includedir)/unicode
@ -101,11 +101,11 @@ install-headers:
dist-local:
clean-local:
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
rm -f $(OBJECTS) $(TARGET)
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
$(RMV) $(OBJECTS) $(TARGET)
distclean-local: clean-local
rm -f Makefile $(DEPS)
$(RMV) Makefile $(DEPS)
check-local:

View file

@ -90,7 +90,7 @@ install-local: install-headers install-library
install-library: all-local
$(mkinstalldirs) $(DESTDIR)$(libdir)
$(INSTALL) $(TARGET) $(DESTDIR)$(libdir)/$(TARGET)
$(INSTALL-S) $(TARGET) $(DESTDIR)$(libdir)/$(TARGET)
install-headers:
$(mkinstalldirs) $(DESTDIR)$(includedir)/unicode
@ -102,11 +102,11 @@ install-headers:
dist-local:
clean-local:
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
rm -f $(OBJECTS) $(TARGET)
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
$(RMV) $(OBJECTS) $(TARGET)
distclean-local: clean-local
rm -f Makefile $(DEPS)
$(RMV) Makefile $(DEPS)
check-local:

View file

@ -37,6 +37,11 @@ INSTALL_SCRIPT = @INSTALL_SCRIPT@
PACKAGE = @PACKAGE@
VERSION = @VERSION@
## Platform-specific setup
@host_frag@
## Files to remove for 'make clean'
CLEANFILES = *~
@ -84,12 +89,12 @@ install-local:
dist-local:
clean-local:
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
check-local:
distclean-local: clean-local
rm -f Makefile
$(RMV) Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
cd $(top_builddir) \

View file

@ -83,11 +83,11 @@ install-local: all-local
dist-local:
clean-local:
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
rm -f $(OBJECTS) $(TARGET)
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
$(RMV) $(OBJECTS) $(TARGET)
distclean-local: clean-local
rm -f Makefile $(DEPS)
$(RMV) Makefile $(DEPS)
check-local:

View file

@ -81,11 +81,11 @@ install-local: all-local
dist-local:
clean-local:
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
rm -f $(OBJECTS) $(TARGET)
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
$(RMV) $(OBJECTS) $(TARGET)
distclean-local: clean-local
rm -f Makefile $(DEPS)
$(RMV) Makefile $(DEPS)
check-local:

View file

@ -81,11 +81,11 @@ install-local: all-local
dist-local:
clean-local:
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
rm -f $(OBJECTS) $(TARGET)
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
$(RMV) $(OBJECTS) $(TARGET)
distclean-local: clean-local
rm -f Makefile $(DEPS)
$(RMV) Makefile $(DEPS)
check-local:

View file

@ -38,6 +38,11 @@ INSTALL_SCRIPT = @INSTALL_SCRIPT@
PACKAGE = @PACKAGE@
VERSION = @VERSION@
## Platform-specific setup
@host_frag@
## Files to remove for 'make clean'
CLEANFILES = *~
@ -85,10 +90,10 @@ install-local:
dist-local:
clean-local:
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
distclean-local: clean-local
rm -f Makefile
$(RMV) Makefile
check-local:

View file

@ -94,11 +94,11 @@ install-local: all-local
dist-local:
clean-local:
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
rm -f $(OBJECTS) $(TARGET)
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
$(RMV) $(OBJECTS) $(TARGET)
distclean-local: clean-local
rm -f Makefile $(DEPS)
$(RMV) Makefile $(DEPS)
check-local: $(TARGET)
ICU_DATA=@DATABUILDDIR@/ TZ=PST8PDT ./$(TARGET)

View file

@ -80,11 +80,11 @@ install-local: all-local
dist-local:
clean-local:
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
rm -f $(OBJECTS) $(TARGET)
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
$(RMV) $(OBJECTS) $(TARGET)
distclean-local: clean-local
rm -f Makefile $(DEPS)
$(RMV) Makefile $(DEPS)
check-local: $(TARGET)
ICU_DATA=$(top_srcdir)/../data/ ./$(TARGET)

View file

@ -92,11 +92,11 @@ install-local: all-local
dist-local:
clean-local:
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
rm -f $(OBJECTS) $(TARGET)
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
$(RMV) $(OBJECTS) $(TARGET)
distclean-local: clean-local
rm -f Makefile $(DEPS)
$(RMV) Makefile $(DEPS)
check-local: $(TARGET)
ICU_DATA=@DATABUILDDIR@/ TZ=PST8PDT ./$(TARGET)

View file

@ -100,11 +100,11 @@ install-local: all-local
dist-local:
clean-local:
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
rm -f $(OBJECTS) $(TARGET)
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
$(RMV) $(OBJECTS) $(TARGET)
distclean-local: clean-local
rm -f Makefile $(DEPS)
$(RMV) Makefile $(DEPS)
check-local: $(TARGET)
ICU_DATA=NOTHING ./$(TARGET)

View file

@ -186,7 +186,7 @@ build-cmnfile: $(COMMONFILE)
gencmn/mkmap.tmp: Makefile $(DATAFILES)
@echo -n Generating $@ list of data files
@-rm -f gencmn/mkmap.tmp
@-$(RMV) gencmn/mkmap.tmp
@for file in $(DATAFILES); do \
echo `pwd`/$$file >> gencmn/mkmap.tmp; \
done;
@ -195,7 +195,7 @@ gencmn/mkmap.tmp: Makefile $(DATAFILES)
$(COMMONFILE): $(DATAFILES) gencmn/mkmap.tmp
@echo -n Generating common file $(COMMONFILE). Number of files: Objdata dir is $(OBJDATADIR)
-@wc -l gencmn/mkmap.tmp
-rm -f $(COMMONFILE)
-$(RMV) $(COMMONFILE)
(cd gencmn ; ./gencmn -c -d ../$(OBJDATADIR) 1000000 mkmap.tmp )
-@ls -l $(COMMONFILE)
@ -270,17 +270,17 @@ install-files:
install-dlls:
@for file in $(UDATA_DLLS); do \
echo $(INSTALL_DATA) @DATABUILDDIR@/$$file $(DESTDIR)$(pkgdatadir)/$(VERSION)/$$file; \
$(INSTALL_DATA) @DATABUILDDIR@/$$file $(DESTDIR)$(pkgdatadir)/$(VERSION)/$$file || exit; \
$(INSTALL-S) @DATABUILDDIR@/$$file $(DESTDIR)$(pkgdatadir)/$(VERSION)/$$file || exit; \
done
dist-local:
clean-local:
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
distclean-local: clean-local
rm -f Makefile $(SRCDATAFILES) $(DATAFILES) $(TESTDATAD) $(BASETESTDATA)
$(RMV) Makefile $(SRCDATAFILES) $(DATAFILES) $(TESTDATAD) $(BASETESTDATA)
check-local:

View file

@ -82,11 +82,11 @@ install-local: all-local
dist-local:
clean-local:
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
rm -f $(OBJECTS) $(TARGET)
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
$(RMV) $(OBJECTS) $(TARGET)
distclean-local: clean-local
rm -f Makefile $(DEPS)
$(RMV) Makefile $(DEPS)
check-local:

View file

@ -86,11 +86,11 @@ install-local: all-local
dist-local:
clean-local:
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
rm -f $(TARGET) $(OBJECTS)
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
$(RMV) $(TARGET) $(OBJECTS)
distclean-local: clean-local
rm -f Makefile $(DEPS) $(RES_FILES) $(TEST_FILES)
$(RMV) Makefile $(DEPS) $(RES_FILES) $(TEST_FILES)
check-local:

View file

@ -86,11 +86,11 @@ install-local: all-local
dist-local:
clean-local:
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
rm -f $(TARGET) $(OBJECTS)
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
$(RMV) $(TARGET) $(OBJECTS)
distclean-local: clean-local
rm -f Makefile $(DEPS) $(RES_FILES) $(TEST_FILES)
$(RMV) Makefile $(DEPS) $(RES_FILES) $(TEST_FILES)
check-local:

View file

@ -97,11 +97,11 @@ $(ICUDATADIR)/cnvalias.dat: $(CONVRTRSFILE) $(TARGET)
dist-local:
clean-local:
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
rm -f $(TARGET) $(OBJECTS)
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
$(RMV) $(TARGET) $(OBJECTS)
distclean-local: clean-local
rm -f Makefile $(DEPS) $(RES_FILES) $(TEST_FILES)
$(RMV) Makefile $(DEPS) $(RES_FILES) $(TEST_FILES)
check-local:

View file

@ -114,7 +114,7 @@ build-data: .sentinel
force-build-data: clean-sentinel build-data
clean-sentinel:
rm -f .sentinel
$(RMV) .sentinel
install-local: all-local
# $(mkinstalldirs) $(DESTDIR)$(sbindir)
@ -125,12 +125,12 @@ install-local: all-local
dist-local:
clean-local:
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
rm -f $(TARGET) $(OBJECTS)
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
$(RMV) $(TARGET) $(OBJECTS)
distclean-local: clean-local clean-sentinel
rm -f Makefile $(DEPS) $(CNV_FILES)
rm -f @DATABUILDDIR@/*.col
$(RMV) Makefile $(DEPS) $(CNV_FILES)
$(RMV) @DATABUILDDIR@/*.col
check-local:

View file

@ -97,11 +97,11 @@ $(ICUDATADIR)/unames.dat: $(UNICODEFILE) $(TARGET)
dist-local:
clean-local:
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
rm -f $(TARGET) $(OBJECTS)
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
$(RMV) $(TARGET) $(OBJECTS)
distclean-local: clean-local
rm -f Makefile $(DEPS) $(RES_FILES) $(TEST_FILES)
$(RMV) Makefile $(DEPS) $(RES_FILES) $(TEST_FILES)
check-local:

View file

@ -96,11 +96,11 @@ $(ICUDATADIR)/uprops.dat: $(UNICODEDATADIR)/UnicodeData.txt $(UNICODEDATADIR)/Mi
dist-local:
clean-local:
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
rm -f $(TARGET) $(OBJECTS)
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
$(RMV) $(TARGET) $(OBJECTS)
distclean-local: clean-local
rm -f Makefile $(DEPS) $(RES_FILES) $(TEST_FILES)
$(RMV) Makefile $(DEPS) $(RES_FILES) $(TEST_FILES)
check-local:

View file

@ -137,11 +137,11 @@ install-local: all-local
dist-local:
clean-local:
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
rm -f $(TARGET) $(OBJECTS)
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
$(RMV) $(TARGET) $(OBJECTS)
distclean-local: clean-local
rm -f Makefile $(DEPS) $(RES_FILES) $(TRANSLIT_RES) $(TEST_FILES)
$(RMV) Makefile $(DEPS) $(RES_FILES) $(TRANSLIT_RES) $(TEST_FILES)
check-local:

View file

@ -99,11 +99,11 @@ $(ICUDATADIR)/test.dat: $(TARGET)
dist-local:
clean-local:
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
rm -f $(TARGET) $(OBJECTS)
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
$(RMV) $(TARGET) $(OBJECTS)
distclean-local: clean-local
rm -f Makefile $(DEPS) $(RES_FILES) $(TEST_FILES)
$(RMV) Makefile $(DEPS) $(RES_FILES) $(TEST_FILES)
check-local:

View file

@ -98,11 +98,11 @@ $(ICUDATADIR)/tz.dat: $(TZFILE) $(TZALIAS) $(TARGET)
dist-local:
clean-local:
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
rm -f $(TARGET) $(OBJECTS)
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
$(RMV) $(TARGET) $(OBJECTS)
distclean-local: clean-local
rm -f Makefile $(DEPS) $(RES_FILES) $(TEST_FILES)
$(RMV) Makefile $(DEPS) $(RES_FILES) $(TEST_FILES)
check-local:

View file

@ -97,15 +97,15 @@ install-local: all-local
dist-local:
rebuild: $(TARGET)
-rm -f $(CNV_FILES)
-$(RMV) $(CNV_FILES)
$(MAKE) all-local
clean-local:
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
rm -f $(TARGET) $(OBJECTS)
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
$(RMV) $(TARGET) $(OBJECTS)
distclean-local: clean-local
rm -f Makefile $(DEPS) $(CNV_FILES)
$(RMV) Makefile $(DEPS) $(CNV_FILES)
check-local:

View file

@ -82,11 +82,11 @@ install-local: all-local
dist-local:
clean-local:
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
rm -f $(OBJECTS) $(TARGET)
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
$(RMV) $(OBJECTS) $(TARGET)
distclean-local: clean-local
rm -f Makefile $(DEPS) $(CNV_FILES)
$(RMV) Makefile $(DEPS) $(CNV_FILES)
check-local:

View file

@ -78,17 +78,17 @@ install-local: install-library
install-library: all-local
$(mkinstalldirs) $(DESTDIR)$(libdir)
$(INSTALL) $(TARGET) $(DESTDIR)$(libdir)/$(TARGET)
$(INSTALL-S) $(TARGET) $(DESTDIR)$(libdir)/$(TARGET)
dist-local:
clean-local:
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
rm -f $(OBJECTS) $(TARGET)
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
$(RMV) $(OBJECTS) $(TARGET)
distclean-local: clean-local
rm -f Makefile $(DEPS)
$(RMV) Makefile $(DEPS)
check-local: