Skip to content

Commit

Permalink
Fix Windows makefiles' install target
Browse files Browse the repository at this point in the history
  • Loading branch information
CyberShadow committed Sep 15, 2014
1 parent 9b7f606 commit 2ada3d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion win32.mak
Expand Up @@ -805,7 +805,7 @@ zip : win32.mak win64.mak posix.mak $(STDDOC) $(SRC) \
$(SRC_STD_C_WIN) $(SRC_STD_C_LINUX) $(SRC_STD_C_OSX) $(SRC_STD_C_FREEBSD) \
$(SRC_ETC) $(SRC_ETC_C) $(SRC_ZLIB) $(SRC_STD_NET) $(SRC_STD_DIGEST) $(SRC_STD_CONTAINER) \
$(SRC_STD_INTERNAL) $(SRC_STD_INTERNAL_DIGEST) $(SRC_STD_INTERNAL_MATH) \
$(SRC_STD_INTERNAL_WINDOWS)
$(SRC_STD_INTERNAL_WINDOWS) $(SRC_STD_REGEX)
del phobos.zip
zip32 -u phobos win32.mak win64.mak posix.mak $(STDDOC)
zip32 -u phobos $(SRC)
Expand All @@ -825,6 +825,7 @@ zip : win32.mak win64.mak posix.mak $(STDDOC) $(SRC) \
zip32 -u phobos $(SRC_STD_NET)
zip32 -u phobos $(SRC_STD_DIGEST)
zip32 -u phobos $(SRC_STD_CONTAINER)
zip32 -u phobos $(SRC_STD_REGEX)

phobos.zip : zip

Expand Down
3 changes: 2 additions & 1 deletion win64.mak
Expand Up @@ -777,7 +777,7 @@ zip : win32.mak win64.mak posix.mak $(STDDOC) $(SRC) \
$(SRC_STD_C_WIN) $(SRC_STD_C_LINUX) $(SRC_STD_C_OSX) $(SRC_STD_C_FREEBSD) \
$(SRC_ETC) $(SRC_ETC_C) $(SRC_ZLIB) $(SRC_STD_NET) $(SRC_STD_DIGEST) $(SRC_STD_CONTAINER) \
$(SRC_STD_INTERNAL) $(SRC_STD_INTERNAL_DIGEST) $(SRC_STD_INTERNAL_MATH) \
$(SRC_STD_INTERNAL_WINDOWS)
$(SRC_STD_INTERNAL_WINDOWS) $(SRC_STD_REGEX)
del phobos.zip
zip32 -u phobos win32.mak win64.mak posix.mak $(STDDOC)
zip32 -u phobos $(SRC)
Expand All @@ -797,6 +797,7 @@ zip : win32.mak win64.mak posix.mak $(STDDOC) $(SRC) \
zip32 -u phobos $(SRC_STD_NET)
zip32 -u phobos $(SRC_STD_DIGEST)
zip32 -u phobos $(SRC_STD_CONTAINER)
zip32 -u phobos $(SRC_STD_REGEX)

phobos.zip : zip

Expand Down

0 comments on commit 2ada3d1

Please sign in to comment.