Skip to content

Commit

Permalink
Fix quoting problem in Makefile.windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Akuli committed Mar 11, 2023
1 parent 6e2389f commit d64c460
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.windows
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ all: jou.exe compile_flags.txt

# point clangd to the right include folder so i don't get red squiggles in my editor
compile_flags.txt:
echo -I$(CURDIR) > compile_flags.txt
echo "-I$(CURDIR)" > compile_flags.txt

obj/%.o: src/%.c $(wildcard src/*.h)
mkdir -p obj && $(CC) -c $(CFLAGS) $< -o $@
Expand Down

0 comments on commit d64c460

Please sign in to comment.