|
Revision 4611, 1.0 KB
(checked in by phk, 6 months ago)
|
|
Move the utility parser functions into their own file
|
-
Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 | # $Id$ |
|---|
| 2 | |
|---|
| 3 | INCLUDES = -I$(top_srcdir)/include |
|---|
| 4 | |
|---|
| 5 | lib_LTLIBRARIES = libvcl.la |
|---|
| 6 | |
|---|
| 7 | libvcl_la_LDFLAGS = -version-info 1:0:0 |
|---|
| 8 | |
|---|
| 9 | libvcl_la_SOURCES = \ |
|---|
| 10 | vcc_priv.h \ |
|---|
| 11 | vcc_compile.h \ |
|---|
| 12 | vcc_token_defs.h \ |
|---|
| 13 | \ |
|---|
| 14 | vcc_acl.c \ |
|---|
| 15 | vcc_action.c \ |
|---|
| 16 | vcc_backend.c \ |
|---|
| 17 | vcc_backend_util.c \ |
|---|
| 18 | vcc_compile.c \ |
|---|
| 19 | vcc_dir_random.c \ |
|---|
| 20 | vcc_dir_round_robin.c \ |
|---|
| 21 | vcc_parse.c \ |
|---|
| 22 | vcc_fixed_token.c \ |
|---|
| 23 | vcc_obj.c \ |
|---|
| 24 | vcc_string.c \ |
|---|
| 25 | vcc_token.c \ |
|---|
| 26 | vcc_var.c \ |
|---|
| 27 | vcc_xref.c |
|---|
| 28 | |
|---|
| 29 | EXTRA_DIST = \ |
|---|
| 30 | vcc_gen_fixed_token.tcl |
|---|
| 31 | |
|---|
| 32 | $(srcdir)/vcc_obj.c: $(srcdir)/vcc_gen_fixed_token.tcl |
|---|
| 33 | cd $(srcdir) && @TCLSH@ vcc_gen_fixed_token.tcl || true |
|---|
| 34 | |
|---|
| 35 | $(srcdir)/vcc_fixed_token.c: $(srcdir)/vcc_gen_fixed_token.tcl $(top_srcdir)/include/vcl.h $(top_srcdir)/include/vrt.h $(top_srcdir)/include/vrt_obj.h |
|---|
| 36 | cd $(srcdir) && @TCLSH@ vcc_gen_fixed_token.tcl || true |
|---|
| 37 | |
|---|
| 38 | $(srcdir)/vcc_token_defs.h: $(srcdir)/vcc_gen_fixed_token.tcl $(top_srcdir)/include/vcl.h $(top_srcdir)/include/vrt.h $(top_srcdir)/include/vrt_obj.h |
|---|
| 39 | cd $(srcdir) && @TCLSH@ vcc_gen_fixed_token.tcl || true |
|---|