summaryrefslogtreecommitdiffstats
path: root/sesman/chansrv/pcsc/Makefile
blob: 483151f2251c1f231410122999960faca06dfc39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

OBJS = xrdp_pcsc.o

CFLAGS = -Wall -O2 -fPIC

all: libpcsclite.so

libpcsclite.so: $(OBJS)
	$(CC) $(LDFLAGS) -shared -o libpcsclite.so $(OBJS)

clean:
	rm -f $(OBJS) libpcsclite.so