blob: 3909779c542e48800e3575990b38b34bf9abb6d3 (
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
33
|
$NetBSD: patch-ac,v 1.2 2002/08/25 18:39:45 jlam Exp $
--- src/Makefile.in.orig Tue Oct 27 02:33:17 1998
+++ src/Makefile.in
@@ -61,7 +61,7 @@
# VFlib
$(VFLIB): $(CORE_OBJ) $(DRV_OBJ)
$(LIBTOOL) --mode=link \
- $(CC) -o $(VFLIB) $(CORE_OBJ) $(DRV_OBJ) \
+ $(CC) $(LDFLAGS) -o $(VFLIB) $(CORE_OBJ) $(DRV_OBJ) \
-version-info @version_info@ -rpath $(libdir) \
$(EXT_LIBRARY)
@@ -183,13 +183,13 @@
# Installing
install:
- $(LIBTOOL) $(CP) $(VFLIB) $(libdir)/$(VFLIB)
+ $(LIBTOOL) $(BSD_INSTALL_DATA) $(VFLIB) $(libdir)/$(VFLIB)
$(LIBTOOL) -n --finish $(libdir)
- $(CP) VF.h $(includedir)/VF.h
- $(CP) VF.h $(runtimedir)/VF.h
- $(LIBTOOL) $(CP) ttindex $(bindir)/ttindex
- $(LIBTOOL) $(CP) bdfindex $(bindir)/bdfindex
- $(LIBTOOL) $(CP) bdfindex $(bindir)/fwindex
+ $(BSD_INSTALL_DATA) VF.h $(includedir)/VF.h
+ $(BSD_INSTALL_DATA) VF.h $(runtimedir)/VF.h
+ $(LIBTOOL) $(BSD_INSTALL_PROGRAM) ttindex $(bindir)/ttindex
+ $(LIBTOOL) $(BSD_INSTALL_PROGRAM) bdfindex $(bindir)/bdfindex
+ $(LIBTOOL) $(BSD_INSTALL_PROGRAM) bdfindex $(bindir)/fwindex
uninstall:
-$(LIBTOOL) $(RM) $(libdir)/$(VFLIB)
-$(RM) $(includedir)/VF.h
|