blob: 29e7e1703583fc1fec51adc4c277d4d0b091a7e6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--- libcci/Makefile.orig Thu Apr 6 21:07:46 1995
+++ libcci/Makefile Sun Nov 12 18:01:00 2000
@@ -1,12 +1,10 @@
-CFLAGS=-DDEBUG
-
-RANLIB = /bin/ranlib
-#RANLIB = /usr/bin/ranlib # the location of ranlib is system dependent.
+RANLIB = ranlib
SRC = connect.c cciClient.c list.c support.c
OBJ = connect.o cciClient.o list.o support.o
-CC = gcc
-CFLAGS = -ggdb
+
+all: libcci.a
+
libcci.a: $(OBJ)
rm -f $@
ar q $@ $(OBJ)
|