mirror of
https://git.freebsd.org/ports.git
synced 2025-05-30 01:46:55 -04:00
37 lines
1.6 KiB
Text
37 lines
1.6 KiB
Text
--- src/Makefile.orig 2017-10-28 02:13:25 UTC
|
|
+++ src/Makefile
|
|
@@ -1,17 +1,17 @@
|
|
-CFLAGS := $(CFLAGS) -I$(BUILDDIR) -Isrc/ -g -DYYENABLE_NLS=0
|
|
+CFLAGS := $(CFLAGS) -Isrc/ -g -DYYENABLE_NLS=0
|
|
|
|
# Sources in this directory
|
|
DIR_SOURCES := nsgenbind.c utils.c webidl-ast.c nsgenbind-ast.c ir.c \
|
|
duk-libdom.c duk-libdom-interface.c duk-libdom-dictionary.c \
|
|
duk-libdom-common.c duk-libdom-generated.c
|
|
|
|
-SOURCES := $(SOURCES) $(BUILDDIR)/nsgenbind-parser.c $(BUILDDIR)/nsgenbind-lexer.c $(BUILDDIR)/webidl-parser.c $(BUILDDIR)/webidl-lexer.c
|
|
+SOURCES := $(SOURCES) src/nsgenbind-parser.c src/nsgenbind-lexer.c src/webidl-parser.c src/webidl-lexer.c
|
|
|
|
-$(BUILDDIR)/%-lexer.c $(BUILDDIR)/%-lexer.h: src/%-lexer.l
|
|
+src/%-lexer.c src/%-lexer.h: src/%-lexer.l
|
|
$(VQ)$(ECHO) " FLEX: $<"
|
|
- $(Q)$(FLEX) --outfile=$(BUILDDIR)/$(*F)-lexer.c --header-file=$(BUILDDIR)/$(*F)-lexer.h $<
|
|
+ $(Q)$(FLEX) --outfile=src/$(*F)-lexer.c --header-file=src/$(*F)-lexer.h $<
|
|
|
|
-$(BUILDDIR)/%-lexer.c: $(BUILDDIR)/%-parser.h
|
|
+src/%-lexer.c: src/%-parser.h
|
|
|
|
# Bison 3.0 and later require api.prefix in curly braces
|
|
# Bison 2.6 and later require api.prefix
|
|
@@ -33,9 +33,9 @@ else
|
|
endif
|
|
endif
|
|
|
|
-$(BUILDDIR)/%-parser.c $(BUILDDIR)/%-parser.h: src/%-parser.y
|
|
+src/%-parser.c src/%-parser.h: src/%-parser.y
|
|
$(VQ)$(ECHO) " BISON: $<"
|
|
- $(Q)$(BISON) -d -t $(BISON_DEFINES) --report=all --output=$(BUILDDIR)/$(*F)-parser.c --defines=$(BUILDDIR)/$(*F)-parser.h $<
|
|
+ $(Q)$(BISON) -d -t $(BISON_DEFINES) --report=all --output=src/$(*F)-parser.c --defines=src/$(*F)-parser.h $<
|
|
|
|
# Grab the core makefile
|
|
include $(NSBUILD)/Makefile.subdir
|