mirror of
https://github.com/lua/lua.git
synced 2026-07-26 16:09:07 +00:00
This is the first commit for the branch Lua 5.3. All source files were copied from the official distribution of 5.3.5 in the Lua site. The test files are the same of 5.3.4. The manual came from the previous RCS repository, revision 1.167.1.2.
27 lines
577 B
Makefile
27 lines
577 B
Makefile
# change this variable to point to the directory with Lua headers
|
|
# of the version being tested
|
|
LUA_DIR = ../../
|
|
|
|
CC = gcc
|
|
|
|
# compilation should generate Dynamic-Link Libraries
|
|
CFLAGS = -Wall -std=gnu99 -O2 -I$(LUA_DIR) -fPIC -shared
|
|
|
|
# libraries used by the tests
|
|
all: lib1.so lib11.so lib2.so lib21.so lib2-v2.so
|
|
|
|
lib1.so: lib1.c
|
|
$(CC) $(CFLAGS) -o lib1.so lib1.c
|
|
|
|
lib11.so: lib11.c
|
|
$(CC) $(CFLAGS) -o lib11.so lib11.c
|
|
|
|
lib2.so: lib2.c
|
|
$(CC) $(CFLAGS) -o lib2.so lib2.c
|
|
|
|
lib21.so: lib21.c
|
|
$(CC) $(CFLAGS) -o lib21.so lib21.c
|
|
|
|
lib2-v2.so: lib2.so
|
|
mv lib2.so ./lib2-v2.so
|