summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 4370b38..b5405a3 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
LUALIBS := -llua
-TARGETS := posixtz posixtz.so
+TARGETS := posixtz core.so
all: $(TARGETS)
clean:
@@ -9,6 +9,6 @@ clean:
posixtz: main.c posixtz.c
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^
-posixtz.so: lua-posixtz.c posixtz.c
+core.so: lua-posixtz.c posixtz.c
$(CC) -fPIC $(CFLAGS) $(LDFLAGS) $(LUALIBS) -shared -o $@ $^