5665c365dfbd92f5a17dea234c591ae149d87afe
[physics.git] / src / GameStates / dir.mk
1 NEWSRCS := # insure blank
2
3 NEWSRCS += CreatingPolygon.cpp
4 NEWSRCS += GameState.cpp
5 NEWSRCS += Paused.cpp
6 NEWSRCS += Running.cpp
7
8
9 # Post dir setup
10
11 CURDIR  := GameStates/
12
13 NEWSRCS := $(addprefix ${CURDIR},${NEWSRCS})
14 NEWOBJS := ${NEWSRCS:.cpp=.o}
15 NEWDEPS := ${NEWSRCS:.cpp=.d}
16
17 # Append to lists
18
19 SRCS    += ${NEWSRCS}
20 OBJS    += $(addprefix ${OBJSDIR},${NEWOBJS})
21 DEPS    += $(addprefix ${DEPSDIR},${NEWDEPS})