blob: 78ea7b7cb608f6a472f0d080b92cbb0eed017fd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Location of Lua header files
LUA_DIR = /usr/local/include/
# Compilation parameters
CC = gcc
CWARNS = -Wall -Wmissing-prototypes -Wshadow -pedantic -Wpointer-arith -Wcast-align -Waggregate-return
CFLAGS = $(CONFIG) $(CWARNS) -ansi -O2 -I$(LUA_DIR)
# Files in this distribution
FILES = makefile \
md5.c \
md5lib.c \
md5.h \
md5.lua \
md5.html \
md5tests.lua
# Rule to create shared library, to be used with `loadlib' (see also
# file `md5.lua')
md5 : md5.o md5lib.o
ld -o libmd5.so -shared md5.o md5lib.o
|