forked from KolibriOS/kolibrios
da310946f0
- Fixed fwrite. - Added strcat to the export table. - Fixed two functions in ksys.h. - Added binaries for autobuild git-svn-id: svn://kolibrios.org@8705 a494cfbc-eb01-0410-851d-a64ba20cac60
26 lines
402 B
Makefile
26 lines
402 B
Makefile
|
|
KTCC=../../../ktcc/trunk/bin/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 \
|
|
tmpdisk_work.kex \
|
|
exp_drv_work.kex
|
|
|
|
|
|
all: $(BIN)
|
|
|
|
%.kex : %.c
|
|
$(KTCC) $(CFLAGS) $(LDFLAGS) $< -o $@ -lnetwork -lc.obj
|
|
$(KPACK) --nologo $@
|
|
|
|
clean:
|
|
rm *.kex
|