]> git.eshelyaron.com Git - emacs.git/commitdiff
Use additional CFLAGS from configure
authorPhilipp Stephani <phst@google.com>
Mon, 12 Jun 2017 14:18:01 +0000 (16:18 +0200)
committerPhilipp Stephani <phst@google.com>
Mon, 12 Jun 2017 14:18:01 +0000 (16:18 +0200)
test/data/emacs-module/Makefile.in

index 427d1aaa07cb03c271975e8525e219aae004725d..c284256181ed312c5208a50a4e62c0fa43142e77 100644 (file)
@@ -25,6 +25,9 @@ top_srcdir = @top_srcdir@
 VPATH = $(srcdir)
 CC = @CC@
 CFLAGS = @CFLAGS@
+PROFILING_CFLAGS = @PROFILING_CFLAGS@
+WARN_CFLAGS = @WARN_CFLAGS@
+WERROR_CFLAGS = @WERROR_CFLAGS@
 CPPFLAGS = @CPPFLAGS@
 SO = @MODULES_SUFFIX@
 
@@ -35,12 +38,15 @@ else
 FPIC_CFLAGS = -fPIC
 endif
 
+ALL_CFLAGS = -I$(top_srcdir)/src $(FPIC_CFLAGS) $(PROFILING_CFLAGS) \
+  $(WARN_CFLAGS) $(WERROR_CFLAGS) $(CFLAGS)
+
 all: mod-test$(SO)
 
 %$(SO): %.o
        $(CC) -shared $(LDFLAGS) -o $@ $<
 
 %.o: %.c
-       $(CC) $(CPPFLAGS) $(CFLAGS) $(FPIC_CFLAGS) -I$(top_srcdir)/src -c -o $@ $<
+       $(CC) $(CPPFLAGS) $(ALL_CFLAGS) -c -o $@ $<
 
 %.o: $(srcdir)/emacs-module.[ch]