aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile6
1 files changed, 0 insertions, 6 deletions
diff --git a/makefile b/makefile
index 4ef9b6c..53e7f2b 100644
--- a/makefile
+++ b/makefile
@@ -1,5 +1,3 @@
-#todo: msys2 stuff
-
CC := clang
CFLAGS := -fPIC
LFLAGS := -lm -shared
@@ -13,10 +11,6 @@ OBJS := $(SRCS:.c=.o)
ifeq ($(OS),Windows_NT)
LFLAGS += -llua -lws2_32
TARGET := $(TARGET:.so=.dll)
-else ifeq ($(UNAME_S),Linux)
- #nothing
-else
- $(warning untested os, using linux defaults)
endif
all: $(TARGET)