blob: c378973b28bd444ed48a4b23c3b206157e45e83a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- Makefile.orig 2005-05-26 03:39:40 UTC
+++ Makefile
@@ -23,6 +23,9 @@ all: cvsps
cvsps: $(OBJS)
$(CC) -o cvsps $(OBJS) -lz
+.c.o:
+ $(CC) $(CFLAGS) -c -o $@ $<
+
install:
[ -d $(prefix)/bin ] || mkdir -p $(prefix)/bin
[ -d $(prefix)/share/man/man1 ] || mkdir -p $(prefix)/share/man/man1
|