mirror of
git://projects.qi-hardware.com/fped.git
synced 2024-12-22 23:41:10 +02:00
transfer build flags from outside
This commit is contained in:
parent
d76f7d19a8
commit
5b21495dcf
8
Makefile
8
Makefile
@ -32,16 +32,18 @@ PNGS = intro-1.png intro-2.png intro-3.png intro-4.png intro-5.png \
|
|||||||
intro-6.png concept-inst.png
|
intro-6.png concept-inst.png
|
||||||
|
|
||||||
SHELL = /bin/bash
|
SHELL = /bin/bash
|
||||||
|
|
||||||
|
CPPFLAGS +=
|
||||||
CFLAGS_GTK = `pkg-config --cflags gtk+-2.0`
|
CFLAGS_GTK = `pkg-config --cflags gtk+-2.0`
|
||||||
LIBS_GTK = `pkg-config --libs gtk+-2.0`
|
LIBS_GTK = `pkg-config --libs gtk+-2.0`
|
||||||
|
|
||||||
CFLAGS_WARN = -Wall -Wshadow -Wmissing-prototypes \
|
CFLAGS_WARN = -Wall -Wshadow -Wmissing-prototypes \
|
||||||
-Wmissing-declarations -Wno-format-zero-length
|
-Wmissing-declarations -Wno-format-zero-length
|
||||||
CFLAGS = -g -std=gnu99 $(CFLAGS_GTK) -DCPP='"cpp"' \
|
CFLAGS += -g -std=gnu99 $(CFLAGS_GTK) -DCPP='"cpp"' \
|
||||||
-DVERSION='"$(GIT_VERSION)$(GIT_STATUS)"' $(CFLAGS_WARN)
|
-DVERSION='"$(GIT_VERSION)$(GIT_STATUS)"' $(CFLAGS_WARN)
|
||||||
SLOPPY = -Wno-unused -Wno-implicit-function-declaration \
|
SLOPPY = -Wno-unused -Wno-implicit-function-declaration \
|
||||||
-Wno-missing-prototypes -Wno-missing-declarations
|
-Wno-missing-prototypes -Wno-missing-declarations
|
||||||
LDFLAGS =
|
LDFLAGS +=
|
||||||
LDLIBS = -lm -lfl $(LIBS_GTK)
|
LDLIBS = -lm -lfl $(LIBS_GTK)
|
||||||
YACC = bison -y
|
YACC = bison -y
|
||||||
YYFLAGS = -v
|
YYFLAGS = -v
|
||||||
@ -97,7 +99,7 @@ endif
|
|||||||
# http://scottmcpeak.com/autodepend/autodepend.html
|
# http://scottmcpeak.com/autodepend/autodepend.html
|
||||||
|
|
||||||
%.o: %.c
|
%.o: %.c
|
||||||
$(CC) -c $(CFLAGS) $*.c -o $*.o
|
$(CC) $(CPPFLAGS) $(CFLAGS) -c $*.c -o $*.o
|
||||||
$(call MKDEP, $*)
|
$(call MKDEP, $*)
|
||||||
|
|
||||||
# generate 26x26 pixels icons, then drop the 1-pixel frame
|
# generate 26x26 pixels icons, then drop the 1-pixel frame
|
||||||
|
Loading…
Reference in New Issue
Block a user