-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: https://pet.opendfki.de/repos/pet/main@743 4200e16c-5112-0410-ac55-d7fb557a720a
- Loading branch information
beki01
committed
Aug 3, 2010
1 parent
4ff9f9b
commit 305c074
Showing
95 changed files
with
10,737 additions
and
965 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,7 +36,7 @@ bin_PROGRAMS = cheap | |
#bin_PROGRAMS += mtest | ||
|
||
cheap_SOURCES = cheap.cpp cheap.h | ||
cheap_LDADD = libcheap.la | ||
cheap_LDADD = libcheap.a | ||
|
||
#dumpgram_SOURCES = dumpgram.cpp \ | ||
# $(top_srcdir)/common/errors.h \ | ||
|
@@ -47,18 +47,20 @@ cheap_LDADD = libcheap.la | |
|
||
# Convenience library (makes building several executables easier and is | ||
# a tiny step towards a general pet library): | ||
noinst_LTLIBRARIES = libcheap.la | ||
noinst_LIBRARIES = libcheap.a | ||
|
||
# The include-file dependencies are automatically computed by Automake | ||
# (`Automatic dependency tracking'). Thus, the headers do not need to be listed | ||
# for compilation, but they need to be found for making a distribution. | ||
# Note that the headers in $(top_srcdir)/common are always included | ||
# (cf. $(top_srcdir)/common/Makefile.am) and are therefore not listed here. | ||
libcheap_la_SOURCES = \ | ||
libcheap_a_SOURCES = \ | ||
agenda.h \ | ||
chart.cpp chart.h \ | ||
chart-mapping.cpp chart-mapping.h \ | ||
cheaptimer.h \ | ||
fs.cpp fs.h \ | ||
fs-chart.cpp fs-chart.h \ | ||
grammar.cpp grammar.h \ | ||
input-modules.cpp input-modules.h \ | ||
item-printer.cpp item-printer.h \ | ||
|
@@ -79,7 +81,9 @@ libcheap_la_SOURCES = \ | |
task.cpp task.h \ | ||
tsdb++.h tsdb++.cpp \ | ||
mrs.h mrs.cpp \ | ||
mrs-printer.h mrs-printer.cpp \ | ||
vpm.h vpm.cpp \ | ||
pcfg.h pcfg.cpp \ | ||
yy-tokenizer.cpp yy-tokenizer.h \ | ||
$(top_srcdir)/common/bitcode.cpp \ | ||
$(top_srcdir)/common/chunk-alloc.cpp \ | ||
|
@@ -102,21 +106,21 @@ libcheap_la_SOURCES = \ | |
|
||
if TOMABECHI_UNIFIER | ||
DEFS += -DDAG_TOMABECHI | ||
libcheap_la_SOURCES += dag-tomabechi.cpp dag-tomabechi.h failure.cpp failure.h \ | ||
libcheap_a_SOURCES += dag-tomabechi.cpp dag-tomabechi.h failure.cpp failure.h \ | ||
qc.h qc.cpp | ||
endif | ||
if SIMPLE_UNIFIER | ||
DEFS += -DDAG_SIMPLE -DWROBLEWSKI2 | ||
libcheap_la_SOURCES += $(top_srcdir)/common/dag-simple.cpp | ||
libcheap_a_SOURCES += $(top_srcdir)/common/dag-simple.cpp | ||
endif | ||
|
||
if ECL | ||
libcheap_la_SOURCES += petecl.c petecl.h | ||
libcheap_a_SOURCES += petecl.c petecl.h | ||
endif | ||
if ECLPREPROC | ||
if ICU | ||
libcheap_la_SOURCES += eclpreprocessor.h eclpreprocessor.cpp #fspp.h fspp.cpp | ||
cheap_LDADD += ../fspp/libfspp.la -lpreprocessor #fix_me | ||
libcheap_a_SOURCES += eclpreprocessor.h eclpreprocessor.cpp #fspp.h fspp.cpp | ||
cheap_LDADD += ../fspp/libfspp.a -lpreprocessor ../fspp/libfspp.a #fix_me | ||
LDFLAGS += -L../fspp | ||
CPPFLAGS += -I../fspp | ||
else | ||
|
@@ -125,16 +129,16 @@ else | |
endif | ||
endif | ||
if ECLMRS | ||
libcheap_la_SOURCES += cppbridge.cpp cppbridge.h petmrs.h petmrs.c | ||
libcheap_a_SOURCES += cppbridge.cpp cppbridge.h petmrs.h petmrs.c | ||
cheap_LDADD += libmrs.a | ||
endif | ||
|
||
# Add ecl libraries to be deleted on "make clean" ... | ||
# Eric Nichols <[email protected]>, Jun. 18, 2005 | ||
MOSTLYCLEANFILES = libmrs.a | ||
|
||
../fspp/libfspp.la: | ||
make -C ../fspp libfspp.la | ||
../fspp/libfspp.a: | ||
make -C ../fspp libfspp.a | ||
|
||
libmrs.a: | ||
( \ | ||
|
@@ -147,34 +151,39 @@ libmrs.a: | |
) | $(ECL) | ||
|
||
if XML | ||
libcheap_la_SOURCES += pic-handler.cpp pic-handler.h pic-states.h \ | ||
libcheap_a_SOURCES += pic-handler.cpp pic-handler.h pic-states.h \ | ||
pic-tokenizer.h pic-tokenizer.cpp \ | ||
xmlparser.cpp xmlparser.h \ | ||
smaf-tokenizer.h smaf-tokenizer.cpp | ||
smaf-tokenizer.h smaf-tokenizer.cpp \ | ||
fsc-tokenizer.cpp fsc-tokenizer.h | ||
endif | ||
|
||
if ICU | ||
libcheap_la_SOURCES += unicode.h unicode.cpp | ||
libcheap_a_SOURCES += unicode.h unicode.cpp | ||
endif | ||
|
||
if XMLRPC_C | ||
libcheap_a_SOURCES += server-xmlrpc.cpp server-xmlrpc.h | ||
endif | ||
|
||
# if LEXDB | ||
# libcheap_la_SOURCES += psqllex.h psqllex.cpp | ||
# libcheap_a_SOURCES += psqllex.h psqllex.cpp | ||
# endif | ||
|
||
if YY | ||
libcheap_la_SOURCES += yy.h yy.cpp | ||
libcheap_a_SOURCES += yy.h yy.cpp | ||
endif | ||
|
||
#if EXTDICT | ||
#libcheap_la_SOURCES += extdict.cpp extdict.h | ||
#libcheap_a_SOURCES += extdict.cpp extdict.h | ||
#endif | ||
|
||
#if RCU | ||
# QC_PATH_COMP could be done robustly, ie with weights. The aim would be | ||
# to find the paths that most quickly find out the biggest losses. | ||
#DEFS += -DROBUST | ||
#libcheap_la_SOURCES += rcu-types.h rcu-types.cpp rcu-dag-node.h | ||
#nodist_libcheap_la_SOURCES += dag-chunk-alloc.h dag-chunk-alloc.cpp \ | ||
#libcheap_a_SOURCES += rcu-types.h rcu-types.cpp rcu-dag-node.h | ||
#nodist_libcheap_a_SOURCES += dag-chunk-alloc.h dag-chunk-alloc.cpp \ | ||
# type-chunk-alloc.cpp type-chunk-alloc.h \ | ||
# type-alloc.h type-alloc.cpp | ||
# Not done for fair comparison | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.