Skip to content

Commit

Permalink
Tup: Use correct variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
jhasse committed Jun 28, 2017
1 parent b36f344 commit f3623bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tupfile
@@ -1,9 +1,9 @@
VERSION = 1.2.0

CC = cc
CFLAGS = @(CONFIG_CFLAGS) -fdiagnostics-color
CFLAGS = @(CFLAGS) -fdiagnostics-color
CXX = c++
CXXFLAGS = @(CONFIG_CXXFLAGS) -std=c++11 -fdiagnostics-color
CXXFLAGS = @(CXXFLAGS) -std=c++11 -fdiagnostics-color

: foreach src/*.cpp src/linux/*.cpp src/jngl/*.cpp src/sdl/*.cpp |> $(CXX) $(CXXFLAGS) `pkg-config --cflags sdl2 freetype2` -c %f -o %o |> %f.o {objs}
: src/ConvertUTF.c |> $(CC) $(CFLAGS) -c %f -o %o |> %f.o {objs}
Expand Down

0 comments on commit f3623bd

Please sign in to comment.