Skip to content

Commit

Permalink
Update language builds to use bundled header.
Browse files Browse the repository at this point in the history
  • Loading branch information
karlotness committed Nov 25, 2018
1 parent 5e1fb8e commit e9043c1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion langs/c/GNUmakefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
CC?=gcc
CFLAGS+=-std=c99 -Isrc/ -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -I../../externals/tree-sitter/include
CFLAGS+=-std=c99 -Isrc/ -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -I../../externals/tree-sitter/include \
-I../../includes/
LDFLAGS+=

# Depend on the tree-sitter parser C file and the Emacs module source
Expand Down
6 changes: 4 additions & 2 deletions langs/python/GNUmakefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
CC?=gcc
CFLAGS+=-std=c99 -Isrc/ -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -I../../externals/tree-sitter/include
CXXFLAGS+=-Isrc/ -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -I../../externals/tree-sitter/include
CFLAGS+=-std=c99 -Isrc/ -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -I../../externals/tree-sitter/include \
-I../../includes/
CXXFLAGS+=-Isrc/ -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -I../../externals/tree-sitter/include \
-I../../includes/
LDFLAGS+=

# Depend on the tree-sitter parser C file and the Emacs module source
Expand Down

0 comments on commit e9043c1

Please sign in to comment.