forked from KolibriOS/kolibrios
35ba6d8562
- [KSYS] added functions for working with drivers. - [SAMPLES] added an example of working with the tmpdisk.sys driver - Misc: fixed Makefiles git-svn-id: svn://kolibrios.org@8699 a494cfbc-eb01-0410-851d-a64ba20cac60
25 lines
382 B
Makefile
25 lines
382 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
|
|
|
|
|
|
all: $(BIN)
|
|
|
|
%.kex : %.c
|
|
$(KTCC) $(CFLAGS) $(LDFLAGS) $< -o $@ -lnetwork -lc.obj
|
|
$(KPACK) --nologo $@
|
|
|
|
clean:
|
|
rm *.kex
|