Skip to content

Commit

Permalink
Bugfix in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Argent77 committed Sep 6, 2014
1 parent f2f8ec5 commit 4fdcb16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tileconv/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ EXECUTABLE = tileconv

ifeq ($(OS),Windows_NT)
EXT = .exe
RM ?= del
RM = del
LDFLAGS += -static
ifeq ($(USE_WINTHREADS),1)
CXXFLAGS += -mwindows -DUSE_WINTHREADS=1
else
LIBS += -pthread
endif
else
RM ?= rm
RM = rm
LIBS += -pthread
ifeq ($(shell uname -s),Darwin)
# A few hacks to enable proper threading support
Expand Down

0 comments on commit 4fdcb16

Please sign in to comment.