blob: f41753cdf30b636120a03eaa13bd99bf2f353669 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- Makefile.orig Wed Aug 28 14:26:32 2002
+++ Makefile Wed Aug 28 14:27:06 2002
@@ -1,10 +1,12 @@
# Makefile for utilities
# David Corcoran <corcoran@linuxnet.com>
+PREFIX?= /usr/local
+
CC = gcc
-CFLAGS = -g -w
-INCLUDE = -I/usr/local/pcsc/include
-LIBS = -L/usr/local/pcsc/lib -lpcsclite
+CFLAGS = -g -w -pthread
+INCLUDE = -I${PREFIX}/include
+LIBS = -L${PREFIX}/lib -lpcsclite
OBJS = testIBM.o testAMMI.o testSCHL.o testSIEMENS.o testBULL.o testGD.o commands.o testA.o testB.o
|