mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-16 06:39:17 +00:00
Make all tools in tools/Makefile by default.
This commit is contained in:
parent
08b3731938
commit
b57b823c2b
7
tools/.cvsignore
Normal file
7
tools/.cvsignore
Normal file
@ -0,0 +1,7 @@
|
||||
bmtoppm
|
||||
delua
|
||||
imc2wav
|
||||
int2flt
|
||||
mat2ppm
|
||||
unlab
|
||||
vima
|
@ -1,8 +1,17 @@
|
||||
CXX = g++
|
||||
CXXFLAGS = -g -O2 -Wall -I../lua/include -I../lua/src -I.. -DLUA_NUM_TYPE=float
|
||||
CFLAGS = -g -O2 -Wall
|
||||
LDFLAGS = -g
|
||||
LIBS = -L../lua/lib -llua
|
||||
|
||||
all: bmtoppm delua imc2wav int2flt mat2ppm unlab vima
|
||||
|
||||
bmtoppm: bmtoppm.c
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ bmtoppm.c -lppm
|
||||
|
||||
mat2ppm: mat2ppm.c
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ mat2ppm.c -lppm
|
||||
|
||||
delua: delua.o ../lua/lib/liblua.a ../localize.o ../registry.o ../debug.o
|
||||
$(CXX) $(LDFLAGS) -o $@ delua.o ../localize.o ../registry.o $(LIBS)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user