You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
577 B

Index: Makefile
--- Makefile.orig 2013-01-06 20:54:46.000000000 +0100
+++ Makefile 2013-01-07 09:36:06.000000000 +0100
@@ -1,10 +1,10 @@
VERSION=3.6
-CC?=gcc
-CFLAGS?=-g -O2 -Wall
-CPPFLAGS+=-I. -DVERSION=\"$(VERSION)\"
-LDLIBS+=-lz # += to allow solaris and friends add their libs like -lsocket
-prefix?=/usr/local
+CC=gcc
+CFLAGS=-Wall -I. -DVERSION=\"$(MAJOR).$(MINOR)\"
+LDFLAGS=
+LDLIBS=-lz
+prefix=/usr/local
target=$(DESTDIR)$(prefix)
OBJS= debug.o \
@@ -17,6 +17,9 @@
cvsclient.o \
list_sort.o
+.c.o:
+ $(CC) $(CFLAGS) -c -o $@ $<
+
all: cvsps
deps: