created a gravity well
[physics.git] / src / Makefile
index 1e11991..b04d5cd 100644 (file)
@@ -43,9 +43,10 @@ SRCS += GameStates/Running.cpp
 
 SRCS += Effects/Effect.cpp
 SRCS += Effects/Gravity.cpp
+SRCS += Effects/GravityWell.cpp
 SRCS += Effects/Screen.cpp
 
-SRCS += configs/paused_cfg.cpp
+SRCS += config/config.cpp
 
 SRCS += input/inputManager.cpp
 
@@ -60,7 +61,7 @@ DEPS := ${SRCS:.cpp=.d}
 DEPS := $(addprefix ${DEPSDIR},${DEPS})
 
 HRDS := ${SRCS:.cpp=.h}
-HRDS := ${HRDS:main.h=} # remove main.h
+HRDS := $(filter-out main.h,$HRDS) # remove main.h
 HRDS += debug.h
 
 HRDS += graphics/colors.h