kolibrios/programs/other/PasswordGen/Makefile
Rustem Gimadutdinov (rgimad) a06b4a13b9 added new program PasswordGen v0.1
git-svn-id: svn://kolibrios.org@8559 a494cfbc-eb01-0410-851d-a64ba20cac60
2021-02-01 20:51:09 +00:00

17 lines
300 B
Makefile

KTCC_DIR=D:/ktcc
NAME=passwordgen
KTCC=$(KTCC_DIR)/kos32-tcc.exe
KPACK=D:/ktcc/kpack.exe
SRC=passwordgen.c
CFLAGS=#-I $(KTCC_DIR)/libc/include -L $(KTCC_DIR)/bin/lib -D_KOS32
LIBS= -lck -lbox
all:
$(KTCC) $(CFLAGS) $(SRC) $(LIBS) -o $(NAME)
$(KPACK) $(NAME)
clean:
del $(NAME)