forked from KolibriOS/kolibrios
24 lines
355 B
Makefile
24 lines
355 B
Makefile
|
|
||
|
KTCC=../linuxtools/kos32-tcc
|
||
|
KPACK = kpack
|
||
|
CFLAGS = -I../include
|
||
|
LDFLAGS = -nostdlib -L../lib ../lib/crt0.o
|
||
|
|
||
|
BIN= stdio_test.kex \
|
||
|
basic_gui.kex \
|
||
|
http_tcp_demo.kex \
|
||
|
math_test.kex \
|
||
|
string_test.kex \
|
||
|
whois.kex \
|
||
|
file_io.kex \
|
||
|
|
||
|
|
||
|
all: $(BIN)
|
||
|
|
||
|
%.kex : %.c
|
||
|
$(KTCC) $(CFLAGS) $(LDFLAGS) $< -o $@ -lnetwork -lc.obj
|
||
|
$(KPACK) --nologo $@
|
||
|
|
||
|
clean:
|
||
|
rm *.kex
|