~ chicken-core (chicken-5) 81c46e5fc13f4048873db7b49d49263059b2c34d
commit 81c46e5fc13f4048873db7b49d49263059b2c34d Author: Kooda <kooda@upyum.com> AuthorDate: Mon Apr 10 17:03:19 2017 +0200 Commit: Kooda <kooda@upyum.com> CommitDate: Mon Apr 10 17:03:19 2017 +0200 Make the chicken-do make rule work on windows, also add a missing dependency for chicken-install. diff --git a/rules.make b/rules.make index 5d0a493a..5520124c 100644 --- a/rules.make +++ b/rules.make @@ -275,7 +275,7 @@ $(eval $(call declare-program-from-object,$(CHICKEN_BUG_PROGRAM)$(EXE),chicken-b # "chicken-do" -$(CHICKEN_DO_PROGRAM): $(SRCDIR)chicken-do.c +$(CHICKEN_DO_PROGRAM)$(EXE): $(SRCDIR)chicken-do.c $(C_COMPILER) $(C_COMPILER_OPTIONS) $< -o $@ # scripts @@ -656,7 +656,8 @@ chicken-install.c: chicken-install.scm \ chicken.pathname.import.scm \ chicken.port.import.scm \ chicken.posix.import.scm \ - chicken.pretty-print.import.scm + chicken.pretty-print.import.scm \ + chicken.tcp.import.scm chicken-uninstall.c: chicken-uninstall.scm \ chicken.data-structures.import.scm \ chicken.foreign.import.scm \Trap