From: Mike D. Lowis Date: Thu, 12 Jul 2012 19:31:12 +0000 (-0400) Subject: Moved compile options from include flags to the compile options macro X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=fc425c0bb3bca93e97ba243abeaaec530b43a251;p=archive%2Fdlang-scm.git Moved compile options from include flags to the compile options macro --- diff --git a/Makefile b/Makefile index baaeb2d..0b5de0d 100644 --- a/Makefile +++ b/Makefile @@ -37,12 +37,12 @@ TEST_OBJS = $(TEST_FILES:%.$(TEST_EXT)=%.o) # Include Directories SRC_INCS = -I inc -TEST_INCS = -I inc -w +TEST_INCS = -I inc # Compiler and Linker Options #---------------------------- CSC = csc -CSCFLAGS = -c +CSCFLAGS = -c -w # Build Rules #------------