]> git.eshelyaron.com Git - emacs.git/commitdiff
(TOOLKIT_DEFINES): Define.
authorKarl Heuer <kwzh@gnu.org>
Tue, 6 Jun 1995 01:57:46 +0000 (01:57 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 6 Jun 1995 01:57:46 +0000 (01:57 +0000)
(ALL_CFLAGS): Insert $(TOOLKIT_DEFINES) here.

src/Makefile.in

index 20e05d5c5e33fc55fd0bda70e01691861dcde5cd..338d6536100f896425a999475aaf76fceea43bde 100644 (file)
@@ -239,6 +239,12 @@ LOCALCPP= localcpp
 SHORT= shortnames
 #endif
 
+#ifdef USE_X_TOOLKIT
+TOOLKIT_DEFINES = -DUSE_@X_TOOLKIT_TYPE@
+#else
+TOOLKIT_DEFINES =
+#endif
+
 /* DO NOT use -R.  There is a special hack described in lastfile.c
    which is used instead.  Some initialized data areas are modified
    at initial startup, then labeled as part of the text area when
@@ -252,7 +258,7 @@ SHORT= shortnames
 
 /* C_SWITCH_X_SITE must come before C_SWITCH_X_MACHINE and C_SWITCH_X_SYSTEM
    since it may have -I options that should override those two.  */
-ALL_CFLAGS=-Demacs -DHAVE_CONFIG_H $(MYCPPFLAG) -I. -I${srcdir} C_SWITCH_MACHINE C_SWITCH_SYSTEM C_SWITCH_SITE C_SWITCH_X_SITE C_SWITCH_X_MACHINE C_SWITCH_X_SYSTEM ${CFLAGS}
+ALL_CFLAGS=-Demacs -DHAVE_CONFIG_H $(TOOLKIT_DEFINES) $(MYCPPFLAG) -I. -I${srcdir} C_SWITCH_MACHINE C_SWITCH_SYSTEM C_SWITCH_SITE C_SWITCH_X_SITE C_SWITCH_X_MACHINE C_SWITCH_X_SYSTEM ${CFLAGS}
 .c.o:
        $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) $<