Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. KTCC_DIR=D:/ktcc
  2.  
  3. NAME=passwordgen
  4.  
  5. KTCC=$(KTCC_DIR)/kos32-tcc.exe
  6. KPACK=D:/ktcc/kpack.exe
  7.  
  8. SRC=passwordgen.c
  9. CFLAGS=#-I $(KTCC_DIR)/libc/include -L $(KTCC_DIR)/bin/lib -D_KOS32
  10. LIBS= -lck -lbox
  11.  
  12. all:
  13.         $(KTCC) $(CFLAGS) $(SRC) $(LIBS) -o $(NAME)
  14.         $(KPACK) $(NAME)
  15.  
  16. clean:
  17.         del $(NAME)