summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authoraalatchm <aalatchm@jamailca.com>2011-03-22 18:27:09 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2011-03-22 20:58:39 +0000
commitc70a7e8158bd81e1b56603ace0a91248e0c02a92 (patch)
tree5ab41b1f963b86369f95a9fc966f38d9beed9361 /Makefile
parent0c244a4e12eb65cf72972bdf49b93366a174e9b8 (diff)
downloadposixtz-c70a7e8158bd81e1b56603ace0a91248e0c02a92.tar.bz2
posixtz-c70a7e8158bd81e1b56603ace0a91248e0c02a92.tar.xz
renamed Lua C module to posixtz.core
This is necessary in order to configure posixtz.lua with additional functions.
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 $@ $^