mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-19 05:39:17 +02:00
Added debug directive
This commit is contained in:
parent
56851b6129
commit
c90db3e683
1 changed files with 7 additions and 0 deletions
|
@ -27,3 +27,10 @@ clean:
|
|||
convert:
|
||||
convert -resize 400x test.png out.png
|
||||
# convert -delay 120 -loop 0 *.png animated.gif
|
||||
|
||||
# A temporary directive to build the life program using GCC directly
|
||||
# For now, need to manually add "#include "../write-png.h"" to example/life.c to get it to build
|
||||
debug:
|
||||
gcc example/life.c -g -c -o example/life.o
|
||||
gcc life.c -g -c -o life.o
|
||||
gcc life.o /usr/local/share/cyclone/scheme/base.o example/grid.o /usr/local/share/cyclone/scheme/write.o example/life.o write-png.o -pthread -lcyclone -lck -lm -lpng -g -o life
|
||||
|
|
Loading…
Add table
Reference in a new issue