1EXTRA_DIST = ressource.rc.in
2
3AM_CPPFLAGS= -I$(gwenhywfar_symlinkdir) \
4 -I$(top_srcdir)/src/base \
5 -I$(top_srcdir)/src/crypt \
6 -I$(top_srcdir)/src/io \
7 -I$(top_srcdir)/src/ipc \
8 -I$(top_srcdir)/src/net2 \
9 -I$(top_srcdir)/src/os \
10 -I$(top_srcdir)/src/parser
11
12AM_CFLAGS=@PROFILING_CFLAGS@
13
14crypttokenplugindir = $(gwenhywfar_plugindir)/ct
15
16noinst_HEADERS=ohbci_l.h ohbci_p.h
17
18crypttokenplugin_LTLIBRARIES=ohbci.la
19crypttokenplugin_DATA=ohbci.xml
20
21ohbci_la_SOURCES=ohbci.c
22ohbci_la_LIBADD=$(top_builddir)/src/libgwenhywfar.la
23ohbci_la_LDFLAGS = -no-undefined $(STRIPALL) -module -avoid-version
24
25sources:
26	for f in $(ohbci_la_SOURCES); do \
27	  echo $(subdir)/$$f >>$(top_srcdir)/i18nsources; \
28	done
29	for f in $(crypttokenplugin_DATA); do \
30	  echo $(subdir)/$$f >>$(top_srcdir)/pdsources; \
31	done
32	for d in $(SUBDIRS); do \
33	  make -C $$d sources; \
34	done
35
36ressource.o: ressource.rc
37	$(RC) -o $@ $<
38
39
40
41