You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
381 B
Makefile
16 lines
381 B
Makefile
CFLAGS = $(WARNINGS) $(DEFINES) $(INCLUDES)
|
|
WARNINGS = -W -Wall
|
|
#DEFINES = -D_XOPEN_SOURCE=600
|
|
INCLUDES = -I$(LUA)/include
|
|
|
|
LUA = /home/mark/src/lang/lua/lua-5.1-rc1
|
|
|
|
default:; echo Choose platform: mingw cygwin posix
|
|
all: mingw cygwin
|
|
|
|
mingw:; $(MAKE) -C w32api ex.dll
|
|
cygwin:; $(MAKE) -C posix ex.dll
|
|
posix:; $(MAKE) -C posix ex.so
|
|
|
|
#"EX_LIB=ex.so" "DEFINES=-D_XOPEN_SOURCE=600"
|