aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorame <[email protected]>2024-04-15 08:29:28 -0500
committerame <[email protected]>2024-04-15 08:29:28 -0500
commit59bac19c2bdbdb4802048412a2a167c5edaf4920 (patch)
tree4ced582c86ef1649f3627de5dfa69163d972a3ce
parent8d85e6501a9aa49da4a4a910207566e85bd5fd4d (diff)
makefile
-rw-r--r--makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/makefile b/makefile
index 331f60a..4ef9b6c 100644
--- a/makefile
+++ b/makefile
@@ -13,6 +13,10 @@ 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)