Remove unnecessary cleanup code
This commit is contained in:
parent
b6d1f417da
commit
5cba5d0f6f
5
makefile
5
makefile
|
@ -125,27 +125,22 @@ LDC_SERVER_FLAGS := -Icontainers/src\
|
||||||
|
|
||||||
dmdclient: githash
|
dmdclient: githash
|
||||||
mkdir -p bin
|
mkdir -p bin
|
||||||
rm -f libdparse/src/std/allocator.d
|
|
||||||
${DMD} ${CLIENT_SRC} ${DMD_CLIENT_FLAGS}
|
${DMD} ${CLIENT_SRC} ${DMD_CLIENT_FLAGS}
|
||||||
|
|
||||||
dmdserver: githash
|
dmdserver: githash
|
||||||
mkdir -p bin
|
mkdir -p bin
|
||||||
rm -f libdparse/src/std/allocator.d
|
|
||||||
${DMD} ${SERVER_SRC} ${DMD_SERVER_FLAGS}
|
${DMD} ${SERVER_SRC} ${DMD_SERVER_FLAGS}
|
||||||
|
|
||||||
debugserver: githash
|
debugserver: githash
|
||||||
mkdir -p bin
|
mkdir -p bin
|
||||||
rm -f libdparse/src/std/allocator.d
|
|
||||||
${DMD} ${SERVER_SRC} ${DEBUG_SERVER_FLAGS}
|
${DMD} ${SERVER_SRC} ${DEBUG_SERVER_FLAGS}
|
||||||
|
|
||||||
gdcclient: githash
|
gdcclient: githash
|
||||||
mkdir -p bin
|
mkdir -p bin
|
||||||
rm -f libdparse/src/std/allocator.d
|
|
||||||
${GDC} ${CLIENT_SRC} ${GDC_CLIENT_FLAGS}
|
${GDC} ${CLIENT_SRC} ${GDC_CLIENT_FLAGS}
|
||||||
|
|
||||||
gdcserver: githash
|
gdcserver: githash
|
||||||
mkdir -p bin
|
mkdir -p bin
|
||||||
rm -f libdparse/src/std/allocator.d
|
|
||||||
${GDC} ${SERVER_SRC} ${GDC_SERVER_FLAGS}
|
${GDC} ${SERVER_SRC} ${GDC_SERVER_FLAGS}
|
||||||
|
|
||||||
ldcclient: githash
|
ldcclient: githash
|
||||||
|
|
Loading…
Reference in New Issue