blob: 3338cea77ca69d052120b0d5650121e7fca7be98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$NetBSD: patch-aa,v 1.2 2005/11/04 19:52:30 rillig Exp $
--- clit18/makefile.orig 2004-07-04 16:52:14.000000000 +0200
+++ clit18/makefile
@@ -1,9 +1,9 @@
all: clit
-CFLAGS=-funsigned-char -Wall -O2 -I ../libtommath-0.30/ -I ../lib -I ../lib/des -I .
+CFLAGS+=-funsigned-char -Wall -I ../libtommath-0.30/ -I ../lib -I ../lib/des -I .
clean:
rm -f *.o clit
clit: clit.o hexdump.o drm5.o explode.o transmute.o display.o utils.o manifest.o ../lib/openclit.a
- gcc -o clit $^ ../libtommath-0.30/libtommath.a
+ gcc ${LDFLAGS} -o clit $^ -ltommath
|