summaryrefslogtreecommitdiff
path: root/filesystems/u9fs/patches/patch-aa
blob: a7a0593d14c866e3ca4eae8ef9696c8b124cd6d0 (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
$NetBSD: patch-aa,v 1.1.1.1 2007/04/24 19:06:03 agc Exp $

--- makefile	2007/04/23 21:54:35	1.1
+++ makefile	2007/04/23 21:55:35
@@ -49,16 +49,16 @@
 	fcall.h\
 	plan9.h
 
-u9fs: $(OFILES)
+u9fs all: $(OFILES)
 	$(LD) $(LDFLAGS) -o u9fs $(OFILES) $(LDTAIL)
 
-%.o: %.c $(HFILES)
+.c.o:
 	$(CC) $(CFLAGS) -c $*.c
 
 clean:
 	rm -f *.o u9fs
 
 install: u9fs
-	cp u9fs ../../bin
+	${BSD_INSTALL_PROGRAM} u9fs ${PREFIX}/libexec/
 
 .PHONY: clean install