ossp-pkg/path/Makefile.in 1.1 -> 1.2
--- Makefile.in 2002/01/21 13:32:35 1.1
+++ Makefile.in 2002/08/03 10:23:41 1.2
@@ -1,11 +1,11 @@
##
-## path - OSSP Path Library
+## OSSP path - Filesystem Path Manipulation
## Copyright (c) 2002 Ralf S. Engelschall <rse@engelschall.com>
## Copyright (c) 2002 The OSSP Project <http://www.ossp.org/>
## Copyright (c) 2002 Cable & Wireless Deutschland <http://www.cw.com/de/>
##
## This file is part of OSSP path, a filesystem path manipulation library
-## which can be found at http://www.ossp.org/pkg/path/.
+## which can be found at http://www.ossp.org/pkg/lib/path/.
##
## Permission to use, copy, modify, and distribute this software for
## any purpose with or without fee is hereby granted, provided that
@@ -64,17 +64,17 @@
$(CC) $(CPPFLAGS) $(CFLAGS) -c $<
.c.lo:
- @$(LIBTOOL) --mode=compile $(CC) $(CPPFLAGS) $(CFLAGS) -c $<
+ $(LIBTOOL) --quiet --mode=compile $(CC) $(CPPFLAGS) $(CFLAGS) -c $<
$(LIB_NAME): $(LIB_OBJS)
- @$(LIBTOOL) --mode=link $(CC) -o $(LIB_NAME) $(LIB_OBJS) -rpath $(libdir) \
+ $(LIBTOOL) --quiet --mode=link $(CC) -o $(LIB_NAME) $(LIB_OBJS) -rpath $(libdir) \
-version-info `$(SHTOOL) version -l txt -d libtool VERSION`
$(TST_NAME): $(TST_OBJS) $(LIB_NAME)
- @$(LIBTOOL) --mode=link $(CC) $(LDFLAGS) -o $(TST_NAME) $(TST_OBJS) $(LIB_NAME) $(LIBS)
+ $(LIBTOOL) --quiet --mode=link $(CC) $(LDFLAGS) -o $(TST_NAME) $(TST_OBJS) $(LIB_NAME) $(LIBS)
check: $(TST_NAME)
- @$(LIBTOOL) --mode=execute ./$(TST_NAME)
+ $(LIBTOOL) --quiet --mode=execute ./$(TST_NAME)
install:
$(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(prefix)
@@ -83,10 +83,10 @@
$(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(libdir)
$(SHTOOL) install -c -m 755 path-config $(DESTDIR)$(bindir)/
$(SHTOOL) install -c -m 644 path.h $(DESTDIR)$(includedir)/
- @$(LIBTOOL) --mode=install $(SHTOOL) install -c -m 644 libpath.la $(DESTDIR)$(libdir)/
+ $(LIBTOOL) --quiet --mode=install $(SHTOOL) install -c -m 644 libpath.la $(DESTDIR)$(libdir)/
uninstall:
- @$(LIBTOOL) --mode=uninstall $(RM) $(DESTDIR)$(libdir)/libpath.la
+ $(LIBTOOL) --quiet --mode=uninstall $(RM) $(DESTDIR)$(libdir)/libpath.la
-$(RM) $(DESTDIR)$(includedir)/path.h
-$(RM) $(DESTDIR)$(bindir)/path-config
-$(RMDIR) $(DESTDIR)$(libdir) >/dev/null 2>&1 || $(TRUE)
|
|