This should allow an autoregen and ./confiure to work. We only generate Makefiles for lib/* and ./Makefile for now. We'll ad more as we go along. Make still fails as we need to figure out TT - tirpc lib, rpcgen, etc. But it's a start!
28 lines
602 B
Makefile
28 lines
602 B
Makefile
MAINTAINERCLEANFILES = Makefile.in
|
|
|
|
include ../../tooltalk.tmpl
|
|
|
|
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
|