fixed up directory creation
[physics.git] / src / dir.mk
CommitLineData
16f14459 1NEWSRCS := # insure blank
0376f786 2
16f14459
PG
3NEWSRCS += game.cpp
4NEWSRCS += main.cpp
5NEWSRCS += mathw.cpp
6NEWSRCS += ticks.cpp
7NEWSRCS += Vector2.cpp
8NEWSRCS += handleSignal.cpp
0376f786 9
16f14459
PG
10NEWSRCS += entityCreator.cpp
11NEWSRCS += entityManager.cpp
12NEWSRCS += effectManager.cpp
13NEWSRCS += collisionManager.cpp
14NEWSRCS += CollisionInfo.cpp
0376f786 15
16f14459 16NEWSRCS += debug.cpp
5f3520c8 17
0376f786 18
16f14459
PG
19# Post dir setup
20
2688190c 21CURDIR := ./
16f14459
PG
22
23NEWSRCS := $(addprefix ${CURDIR},${NEWSRCS})
24NEWOBJS := ${NEWSRCS:.cpp=.o}
25NEWDEPS := ${NEWSRCS:.cpp=.d}
26
27# Append to lists
28
29SRCS += ${NEWSRCS}
30OBJS += $(addprefix ${OBJSDIR},${NEWOBJS})
31DEPS += $(addprefix ${DEPSDIR},${NEWDEPS})