aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorame <[email protected]>2024-04-15 09:25:47 -0500
committerame <[email protected]>2024-04-15 09:25:47 -0500
commitcff21457076875546664bb7fc5b1a2a79d9babaa (patch)
tree3826d2e9d10b6a279cb43acc396df5711af019f9
parent59bac19c2bdbdb4802048412a2a167c5edaf4920 (diff)
this works
-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)