blob: 850f17e1774943ecb7b17a7363ee8f9c64c399f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
$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) $<
|