diff options
author | Chris Xiong <chirs241097@gmail.com> | 2015-10-11 22:04:05 +0800 |
---|---|---|
committer | Chris Xiong <chirs241097@gmail.com> | 2015-10-11 22:04:05 +0800 |
commit | 627d814f487ac38d4f9b9b71da9bef46f33b3dad (patch) | |
tree | 8fe9ffba654b40ede31575874793b735df0fdf2e /tools/dtputil/makefile | |
parent | f54345e4fc889471513cba99151a5e6a2dcef2d8 (diff) | |
download | bullet-lab-remix-627d814f487ac38d4f9b9b71da9bef46f33b3dad.tar.xz |
Implement the collision system and a simple effect.
Fixed a problem that keeps the screen black on start up.
Replace the build script in dtputil with makefile.
Sync with the newest SMELT revision.
Diffstat (limited to 'tools/dtputil/makefile')
-rw-r--r-- | tools/dtputil/makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/dtputil/makefile b/tools/dtputil/makefile new file mode 100644 index 0000000..92ed0fb --- /dev/null +++ b/tools/dtputil/makefile @@ -0,0 +1,10 @@ +CC= g++ +CXXFLAGS= -Wall +LINK= -lz -lsmeltext +LINK_FOLDER= -L../../extensions/ + +all: anmutil dtputil +anmutil: anmutil.cpp + $(CC) anmutil.cpp -o anmutil $(CXXFLAGS) $(LINK_FOLDER) $(LINK) +dtputil: dtputil.cpp + $(CC) dtputil.cpp -o dtputil $(CXXFLAGS) $(LINK_FOLDER) $(LINK)
\ No newline at end of file |