From fb93f405c1435c294a58167de6c43a7a9bfac0d0 Mon Sep 17 00:00:00 2001 From: Jon Trulson Date: Wed, 30 Oct 2019 19:33:01 -0600 Subject: [PATCH] dtwm: use new GENCPP --- cde/programs/dtwm/Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cde/programs/dtwm/Makefile.am b/cde/programs/dtwm/Makefile.am index 3c6ca1db9..8fe937de4 100644 --- a/cde/programs/dtwm/Makefile.am +++ b/cde/programs/dtwm/Makefile.am @@ -4,6 +4,7 @@ bin_PROGRAMS = dtwm dtfplist dist_config_DATA = sys.dtwmrc Dtwm.defs BUILT_SOURCES = sys.dtwmrc Dtwm.defs +CLEANFILES = sys.dtwmrc Dtwm.defs AM_CPPFLAGS = -DLARGECURSORS -DR2_COMPAT -DOPAQUE -DSHAPE -DUNMAP_ON_RESTART \ -DBATCH_DRAG_REQUESTS -DCDE_INSTALLATION_TOP=\"${prefix}\" \ @@ -43,10 +44,9 @@ SCRIPTFLAGS = -DCDE_INSTALLATION_TOP=${prefix} \ Dtwm.defs: Dtwm.defs.src $(RM) $@ - $(CPP) -P -DXCOMM=# $(AM_CPPFLAGS) - < $< > $@ + $(GENCPP) -P -DXCOMM=# $(AM_CPPFLAGS) $< > $@ -CPPSRC = sys.dtwmrc.src sys.dtwmrc: sys.dtwmrc.src $(RM) $@ - $(CPP) -P -DXCOMM=# $(AM_CPPFLAGS) - < $< > $@ + $(GENCPP) -P -DXCOMM=# $(AM_CPPFLAGS) $< > $@