Advertisement
Guest User

Untitled

a guest
May 23rd, 2012
23,118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. PROGRAM = libpcsclite.so.1.0.0
  2. SRCS = winscard.cpp Crypto.cpp Decoder-ECM.cpp Keys.cpp Keyset.cpp
  3. OBJS = $(subst .cpp,.o,$(SRCS))
  4.  
  5. RM := rm
  6. CXX := g++
  7. CC := g++
  8.  
  9. CPPFLAGS = -g -fPIC -O2 -I /usr/include/PCSC
  10. LDFLAGS = -g -fPIC -shared
  11.  
  12. $(PROGRAM): $(OBJS)
  13. $(LINK.o) $^ $(LOADLIBES) -shared -o $@
  14.  
  15. .PHONY: clean
  16.  
  17. clean:
  18. $(RM) $(OBJS) $(PROGRAM)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement