kolibrios/programs/other/TinyHashView/Makefile
superturbocat2001 3b4f58dac4 TinyHashView 2.5:
- 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
2020-12-16 20:10:09 +00:00

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)