initial checkin of harald welte's original librfid project
[rfid/librfid.git] / src / Makefile.am
1 LIBVERSION= 0:0:0
2 INCLUDES = $(all_includes) -I$(top_srcdir)/include -D__LIBRFID__
3
4 lib_LTLIBRARIES = librfid.la
5
6 CORE=rfid.c rfid_layer2.c rfid_protocol.c rfid_reader.c
7 L2=rfid_layer2_iso14443a.c rfid_layer2_iso14443b.c rfid_layer2_iso15693.c rfid_iso14443_common.c
8 PROTO=rfid_proto_tcl.c rfid_proto_mifare_ul.c rfid_proto_mifare_classic.c
9 READER=rfid_reader_cm5121.c rfid_reader_cm5121_openct.c rfid_asic_rc632.c 
10
11 librfid_la_LDFLAGS = -Wc,-nostartfiles -version-info $(LIBVERSION) -lopenct
12 librfid_la_SOURCES = $(CORE) $(L2) $(PROTO) $(READER)
13