Files
2013-09-26 17:14:40 +02:00

33 lines
964 B
Plaintext

$NetBSD: patch-an,v 1.4 2006/11/14 13:16:00 wennmach Exp $
Libtoolize.
--- src/gshhs/makefile.orig Sat Jan 27 03:10:36 2001
+++ src/gshhs/makefile
@@ -13,19 +13,19 @@
all: gshhs gshhs_dp
install: all
- $(INSTALL) gshhs$(EXE) $(bindir)
- $(INSTALL) gshhs_dp$(EXE) $(bindir)
+ @$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) gshhs$(EXE) $(bindir)
+ @$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) gshhs_dp$(EXE) $(bindir)
clean:
- \rm -f *.o *% gshhs$(EXE) gshhs_dp$(EXE)
+ \rm -f *.o *.lo *% gshhs$(EXE) gshhs_dp$(EXE)
spotless: clean
gshhs: gshhs.o
- $(CC) $(CFLAGS) gshhs.o $(LIBS) $(LDFLAGS) -o gshhs
+ @$(LIBTOOL) --mode=link $(CC) $(CFLAGS) gshhs.lo $(LIBS) $(LDFLAGS) -o $@
gshhs_dp: gshhs_dp.o
- $(CC) $(CFLAGS) gshhs_dp.o $(LIBS) $(LDFLAGS) -o gshhs_dp
+ @$(LIBTOOL) --mode=link $(CC) $(CFLAGS) gshhs_dp.lo $(LIBS) $(LDFLAGS) -o $@
.c.o:
- $(CC) -c $(CFLAGS) $<
+ @$(LIBTOOL) --mode=compile $(CC) $(CPPFLAGS) -c $(CFLAGS) $<