Fix syntax error in makefile

This commit is contained in:
Hackerpilot 2014-08-04 17:23:27 -07:00
parent ee9d8e0056
commit 0db68f193e
3 changed files with 6 additions and 2 deletions

3
.gitmodules vendored
View File

@ -14,3 +14,6 @@
path = libdparse
url = https://github.com/Hackerpilot/libdparse.git
branch = master
[submodule "logger"]
path = logger
url = https://github.com/burner/logger.git

1
logger Submodule

@ -0,0 +1 @@
Subproject commit 0ee9e9a702ce99bcbc6c16c0492f5b5cc3f21280

View File

@ -83,11 +83,11 @@ dmdserver:
gdcclient:
rm -f containers/src/std/allocator.d
${GDC} {CLIENT_SRC} ${GDC_CLIENT_FLAGS}
${GDC} ${CLIENT_SRC} ${GDC_CLIENT_FLAGS}
gdcserver:
rm -f containers/src/std/allocator.d
${GDC} {SERVER_SRC} ${GDC_SERVER_FLAGS}
${GDC} ${SERVER_SRC} ${GDC_SERVER_FLAGS}
#ldcclient:
# ${LDC} {CLIENT_SRC} ${LDC_CLIENT_FLAGS}