forked from KolibriOS/kolibrios
3b4f58dac4
- Added launch of OpenDialog if the program is launched without parameters. - Macros are used for convenient work with the clipboard git-svn-id: svn://kolibrios.org@8430 a494cfbc-eb01-0410-851d-a64ba20cac60
18 lines
266 B
Makefile
Executable File
18 lines
266 B
Makefile
Executable File
KTCC_DIR=../../develop/ktcc/trunk
|
|
|
|
NAME=thashview
|
|
|
|
KTCC=$(KTCC_DIR)/bin/kos32-tcc
|
|
KPACK=kpack
|
|
|
|
SRC=thashview.c
|
|
CFLAGS=-I $(KTCC_DIR)/libc/include
|
|
LIBS = -lck -lcryptal -ldialog
|
|
|
|
all:
|
|
$(KTCC) $(CFLAGS) $(SRC) $(LIBS) -o $(NAME)
|
|
$(KPACK) $(NAME)
|
|
|
|
clean:
|
|
rm $(NAME)
|