forked from KolibriOS/kolibrios
36b26f112a
- Added Makefile.linux32 - Added TEAtool and fixed console title - Fixed crash of THashView git-svn-id: svn://kolibrios.org@8250 a494cfbc-eb01-0410-851d-a64ba20cac60
19 lines
350 B
Makefile
Executable File
19 lines
350 B
Makefile
Executable File
KTCC_DIR=../../develop/ktcc/trunk
|
|
|
|
NAME=thashview
|
|
|
|
KTCC=$(KTCC_DIR)/bin/kos32-tcc
|
|
KPACK=kpack
|
|
|
|
SRC=thashview.c algorithms/*.c
|
|
CFLAGS=-nostdinc -I $(KTCC_DIR)/libc/include
|
|
LFLAGS=-nostdlib -L $(KTCC_DIR)/bin/lib $(KTCC_DIR)/bin/lib/start.o
|
|
LIBS = -lck
|
|
|
|
all:
|
|
$(KTCC) $(CFLAGS) $(LFLAGS) $(SRC) $(LIBS) -o $(NAME)
|
|
$(KPACK) $(NAME)
|
|
|
|
clean:
|
|
rm $(NAME)
|