blob: 65fdd791c3eeb136e47e62ac77909b78d227bc6b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- Makefile.orig 2012-07-18 12:44:35.000000000 +0200
+++ Makefile 2012-07-18 12:44:52.000000000 +0200
@@ -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
|