0
|
1 ####### This is the input file for automake, which will generate Makefile.in ##########
|
|
2
|
|
3
|
|
4 ## not a GNU package. You can remove this line, if
|
|
5 ## you have all needed files, that a GNU package needs
|
|
6 AUTOMAKE_OPTIONS = foreign 1.4
|
|
7
|
|
8
|
|
9 #LIBS=
|
|
10 AM_YFLAGS=-d -v
|
|
11 AM_LFLAGS=$(LEX_FLAGS)
|
|
12
|
|
13 bin_PROGRAMS=soapcpp2
|
|
14
|
|
15 soapcpp2_CFLAGS=$(BISON_DEFINE) $(LEX_DEFINE) $(C_DEBUG_FLAGS) $(SOAPCPP2_IMPORTPATH) -D$(platform)
|
|
16 soapcpp2_LDADD=$(YACC_LIB) $(LEXLIB)
|
|
17 soapcpp2_SOURCES= soapcpp2_yacc.y soapcpp2_lex.l symbol2.c error2.c init2.c soapcpp2.c
|
|
18
|
|
19 CLEANFILES= *~ soapcpp2_lex.c soapcpp2_yacc.c soapcpp2_yacc.h y.output soapcpp2_yacc.output
|
|
20
|
|
21
|
|
22
|