2021-06-11 00:27:24 +02:00
|
|
|
KTCC=kos32-tcc
|
2021-05-10 00:12:43 +02:00
|
|
|
FASM= fasm
|
2021-04-27 18:33:31 +02:00
|
|
|
KPACK = kpack
|
2021-09-26 19:55:43 +02:00
|
|
|
CFLAGS = -I../include -I../../../../../../contrib/sdk/sources/SDL-1.2.2_newlib/include
|
2021-06-11 00:27:24 +02:00
|
|
|
LDFLAGS = -nostdlib -L../../bin/lib ../../bin/lib/crt0.o
|
2021-04-27 18:33:31 +02:00
|
|
|
|
|
|
|
BIN= stdio_test.kex \
|
|
|
|
basic_gui.kex \
|
|
|
|
http_tcp_demo.kex \
|
|
|
|
math_test.kex \
|
|
|
|
string_test.kex \
|
|
|
|
whois.kex \
|
|
|
|
file_io.kex \
|
2021-05-01 00:00:07 +02:00
|
|
|
tmpdisk_work.kex \
|
2021-06-11 00:27:24 +02:00
|
|
|
consoleio.kex \
|
2021-07-06 20:18:46 +02:00
|
|
|
assert_test.kex \
|
2021-06-11 00:27:24 +02:00
|
|
|
fasm/sprintf_test.kex \
|
|
|
|
clayer/rasterworks.kex \
|
|
|
|
clayer/libimg.kex \
|
|
|
|
clayer/dialog.kex \
|
|
|
|
clayer/msgbox.kex \
|
2021-07-06 20:18:46 +02:00
|
|
|
clayer/boxlib.kex \
|
2021-09-26 19:55:43 +02:00
|
|
|
thread_work.kex \
|
2021-09-26 21:56:07 +02:00
|
|
|
sdltest.kex \
|
2021-11-03 19:52:54 +01:00
|
|
|
shell_test.kex \
|
|
|
|
libc_test.kex
|
2021-06-11 00:27:24 +02:00
|
|
|
|
2021-09-26 21:56:07 +02:00
|
|
|
LIBS= -lSDL -lshell -ltcc -lsound -ldialog -lrasterworks -limg -lbox -lmsgbox -lnetwork -lc.obj
|
2021-04-27 18:33:31 +02:00
|
|
|
|
|
|
|
all: $(BIN)
|
|
|
|
|
|
|
|
%.kex : %.c
|
2021-06-11 00:27:24 +02:00
|
|
|
$(KTCC) $(CFLAGS) $(LDFLAGS) $< -o $@ $(LIBS)
|
2021-05-10 00:12:43 +02:00
|
|
|
$(KPACK) --nologo $@
|
|
|
|
|
|
|
|
%.kex : %.asm
|
|
|
|
$(FASM) $< $@
|
2021-04-27 18:33:31 +02:00
|
|
|
$(KPACK) --nologo $@
|
|
|
|
|
|
|
|
clean:
|
2021-06-11 00:27:24 +02:00
|
|
|
rm *.kex clayer/*.kex
|