summaryrefslogtreecommitdiff
path: root/devel/nsgenbind/files/patch-src_Makefile
blob: 0a6364cf2e3136a63dab5d14bcc645086afd837d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
--- 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