34 lines
849 B
Makefile
34 lines
849 B
Makefile
xsessiondir = $(CDE_INSTALLATION_TOP)/config/Xsession.d
|
|
|
|
MAINTAINERCLEANFILES = Makefile.in
|
|
|
|
bin_PROGRAMS = dtimsstart
|
|
|
|
dist_xsession_SCRIPTS = 0020.dtims
|
|
|
|
dtimsstart_CFLAGS = -DNLS
|
|
|
|
dtimsstart_LDADD = $(DTCLIENTLIBS) $(XTOOLLIB)
|
|
|
|
dtimsstart_SOURCES = action.c env.c file.c main.c remote.c select.c \
|
|
start.c util.c win.c ximserr.h ximsfunc.h xims.h \
|
|
ximspath.h
|
|
|
|
BUILT_SOURCES = 0020.dtims
|
|
CLEANFILE = $(BUILT_SOURCES)
|
|
|
|
cfgdir = $(CDE_INSTALLATION_TOP)/config/Xsession.d
|
|
dist_cfg_DATA = 0020.dtims
|
|
|
|
imsdir = $(CDE_INSTALLATION_TOP)/config/ims
|
|
dist_ims_DATA = conf/start.conf
|
|
|
|
LOCAL_CPP_DEFINES = -DCDE_INSTALLATION_TOP=$(CDE_INSTALLATION_TOP) \
|
|
-DCDE_CONFIGURATION_TOP=$(CDE_CONFIGURATION_TOP) \
|
|
-DKORNSHELL=$(KSH)
|
|
|
|
0020.dtims: 0020.dtims.src
|
|
$(RM) $@
|
|
$(GENCPP) -P -DXCOMM=# $(LOCAL_CPP_DEFINES) $< > $@
|
|
|