Redo the way the main CDE libs are specified in configure.ac... The current way could not work due to evaluation issues, and the fact that variables like $srcdir and the like are only valid in Makefiles, not configure. Use @LIBNAME@ rather then $(LIBNAME) in Makefile.am files - this way the location is always evaluated when it's run, not in configure - which can't work for a variety of reasons. Got some of the TT binaries to build. Made a new include/cppfile.inc file that can be used to pre-process files. The downside is that currently you can only pre-process one file at a time per Makefile. Something more robust is needed, but at least tt/bin/shell now builds. Will need to come up with a better way.
28 lines
601 B
Makefile
28 lines
601 B
Makefile
MAINTAINERCLEANFILES = Makefile.in
|
|
|
|
include ../../tooltalk.inc
|
|
|
|
bin_PROGRAMS = ttdbck
|
|
|
|
ttdbck_LDADD = @LIBTT@ $(X_LIBS) ../../slib/libstt.a ../../mini_isam/libisam.a
|
|
|
|
if LINUX
|
|
ttdbck_LDADD += $(TIRPCLIB) $(XTOOLLIB)
|
|
endif
|
|
|
|
if SOLARIS
|
|
ttdbck_LDADD += $(XTOOLLIB)
|
|
endif
|
|
|
|
if OPENBSD
|
|
ttdbck_LDADD += $(XTOOLLIB)
|
|
endif
|
|
|
|
ttdbck_CXXFLAGS = $(TIRPCINC) -I../../slib -I../../lib -I../../mini_isam \
|
|
$(TT_VERSION_DEFINE)
|
|
|
|
ttdbck_SOURCES = binkey.C binkey_utils.C common.C \
|
|
options.C options_tt.C prop.C \
|
|
prop_utils.C spec.C spec_repair.C \
|
|
spec_utils.C ttdbck.C
|