mirror of
git://projects.qi-hardware.com/fped.git
synced 2024-11-18 07:16:15 +02:00
fped/Makefile: added LDFLAGS (currently empty)
git-svn-id: http://svn.openmoko.org/trunk/eda/fped@5986 99fdad57-331a-0410-800a-d7fa5415bdb3
This commit is contained in:
parent
dd255ef510
commit
feae08fc9e
3
Makefile
3
Makefile
@ -41,6 +41,7 @@ CFLAGS = -g -std=gnu99 $(CFLAGS_GTK) -DCPP='"cpp"' \
|
|||||||
-DSVN_VERSION='"$(SVN_VERSION)$(SVN_STATUS)"' $(CFLAGS_WARN)
|
-DSVN_VERSION='"$(SVN_VERSION)$(SVN_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 =
|
||||||
LDLIBS = -lm -lfl $(LIBS_GTK)
|
LDLIBS = -lm -lfl $(LIBS_GTK)
|
||||||
YACC = bison -y
|
YACC = bison -y
|
||||||
YYFLAGS = -v
|
YYFLAGS = -v
|
||||||
@ -116,7 +117,7 @@ endif
|
|||||||
all: fped
|
all: fped
|
||||||
|
|
||||||
fped: $(OBJS)
|
fped: $(OBJS)
|
||||||
$(CC) -o $@ $(OBJS) $(LDLIBS)
|
$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LDLIBS)
|
||||||
|
|
||||||
lex.yy.c: fpd.l y.tab.h
|
lex.yy.c: fpd.l y.tab.h
|
||||||
$(LEX) fpd.l
|
$(LEX) fpd.l
|
||||||
|
Loading…
Reference in New Issue
Block a user