1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

dtprintegrate: make it build

This commit is contained in:
Jon Trulson 2019-11-20 17:09:46 -07:00
parent a2c18db66b
commit 9c70437ee7
2 changed files with 25 additions and 11 deletions

View file

@ -422,6 +422,8 @@ programs/dtsearchpath/dtappg/Makefile
programs/dtappintegrate/Makefile
programs/dtprintegrate/Makefile
])
AC_OUTPUT

View file

@ -1,15 +1,27 @@
bin_PROGRAMS = dtprintegrate dtlp dtlpsetup
MAINTAINERCLEANFILES = Makefile.in
SCRIPTFLAGS = -DDTKORNSHELL=$(DTKORNSHELL)
bin_SCRIPTS = dtprintegrate dtlp dtlpsetup
CPPTARGET = dtprintegrate
CPPSRC = dtprintegrate.src
include $(srcdir)/include/cppfile.tmpl
LOCAL_CPP_DEFINES = -DCDE_INSTALLATION_TOP=$(CDE_INSTALLATION_TOP) \
-DCDE_CONFIGURATION_TOP=$(CDE_CONFIGURATION_TOP) \
-DDTKORNSHELL="$(CDE_INSTALLATION_TOP)/bin/dtksh" \
-DKORNSHELL=$(KSH)
CPPTARGET = dtlp
CPPSRC = dtlp.src
include $(srcdir)/include/cppfile.tmpl
BUILT_SOURCES = dtprintegrate dtlp dtlpsetup
CLEANFILES = $(BUILT_SOURCES)
dtprintegrate: dtprintegrate.src
$(RM) $@
$(GENCPP) -P -DXCOMM=# $(LOCAL_CPP_DEFINES) $< > $@
chmod 755 $@
dtlp: dtlp.src
$(RM) $@
$(GENCPP) -P -DXCOMM=# $(LOCAL_CPP_DEFINES) $< > $@
chmod 755 $@
dtlpsetup: dtlpsetup.src
$(RM) $@
$(GENCPP) -P -DXCOMM=# $(LOCAL_CPP_DEFINES) $< > $@
chmod 755 $@
CPPTARGET = dtlpsetup
CPPSRC = dtlpsetup.src
include $(srcdir)/include/cppfile.tmpl