Fix syntax error in makefile
This commit is contained in:
parent
ee9d8e0056
commit
0db68f193e
|
@ -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
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 0ee9e9a702ce99bcbc6c16c0492f5b5cc3f21280
|
4
makefile
4
makefile
|
@ -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}
|
||||
|
|
Loading…
Reference in New Issue