X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;ds=sidebyside;f=Release%2Fsrc%2Fapp%2Fsubdir.mk;h=57cbd254b17389a6e45a161bdbc6d9d310fbdaa8;hb=3673ff7cec6896ff3d3aaf7f19027c510a15bcda;hp=e0bc8c4457527cddfb6a0995e74d6e0d60d4c562;hpb=867fd5d9b79c3b9c1d0fb17ba9f55cfe971b93d5;p=l2e.git diff --git a/Release/src/app/subdir.mk b/Release/src/app/subdir.mk index e0bc8c4..57cbd25 100644 --- a/Release/src/app/subdir.mk +++ b/Release/src/app/subdir.mk @@ -5,22 +5,28 @@ # Add inputs and outputs from these tool invocations to the build variables CPP_SRCS += \ ../src/app/Application.cpp \ -../src/app/Input.cpp +../src/app/Arguments.cpp \ +../src/app/Input.cpp \ +../src/app/State.cpp OBJS += \ ./src/app/Application.o \ -./src/app/Input.o +./src/app/Arguments.o \ +./src/app/Input.o \ +./src/app/State.o CPP_DEPS += \ ./src/app/Application.d \ -./src/app/Input.d +./src/app/Arguments.d \ +./src/app/Input.d \ +./src/app/State.d # Each subdirectory must supply rules for building sources it contributes src/app/%.o: ../src/app/%.cpp @echo 'Building file: $<' @echo 'Invoking: GCC C++ Compiler' - g++ -I/usr/include/SDL -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" + g++ -DNDEBUG -I/usr/include/SDL -O3 -Wall -Werror -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<" @echo 'Finished building: $<' @echo ' '