We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9abcdff commit 4106cdaCopy full SHA for 4106cda
build.bat
@@ -70,6 +70,9 @@ rem or
70
rem --best for smallest
71
72
%MAKE% -C src %TARGET%
73
+IF EXIST src\*.EXE IF NOT EXIST bin MKDIR bin > NUL
74
+rem we COPY instead of MOVE as otherwise forces linking every run (since no src\MOVE.EXE exist)
75
+IF EXIST src\*.EXE COPY /Y src\*.EXE bin\ > NUL
76
77
set CC=
78
set COMFLAGS=
src/Makefile
@@ -10,6 +10,7 @@ kitten.obj: ../kitten/kitten.c
10
tnyprntf.obj: ../tnyprntf/tnyprntf.c
11
$(CC) $(_CFLAGS)$@ -c $^
12
13
+# Note: we can't MOVE file as it will call our MOVE.EXE on Win64
14
move.exe move.com: move.c movedir.c misc.c $(EXTRA_OBJS)
15
$(CC) $(CFLAGS)$@ $^ $(LDFLAGS)
16
$(UPXARGS) $@
0 commit comments