diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-05-26 22:16:55 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-05-26 22:16:55 +0200 |
commit | 3fd5d966f3b0cabd9f6931bc1ca416408f9e101c (patch) | |
tree | 88607b1cd901b78b0892a0a85580993f7cb2c57d /shared/makefile | |
parent | edfa25fcd8edad43998f50a2144d30a6f966c1c8 (diff) |
compile sim on windows without errors
Diffstat (limited to 'shared/makefile')
-rw-r--r-- | shared/makefile | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/shared/makefile b/shared/makefile index 7f0ceb9..e5a6ff6 100644 --- a/shared/makefile +++ b/shared/makefile @@ -5,14 +5,5 @@ HEADERS += $(wildcard ../shared/*.h) BUILD_STR=$(shell git update-index -q --refresh; git describe --tags --dirty='*' --broken='x' | cut -c1-20) CFLAGS += -DW2_BUILD_STR=\"$(BUILD_STR)\" -# os info -OS=$(strip $(shell uname -o)) -ifeq ($(OS),GNU/Linux) -CFLAGS += -DW2_HOST_LINUX -endif -ifeq ($(OS),Msys) -CFLAGS += -DW2_HOST_WIN32 -endif - clean:: rm -f ../shared/*.o |