add lua experiment
This commit is contained in:
parent
19ad87265b
commit
6518f586b2
4 changed files with 72 additions and 1 deletions
5
Makefile
5
Makefile
|
@ -1,7 +1,7 @@
|
|||
CFLAGS=-std=c99 -Wall -g -O2
|
||||
INDENTOPTS=-kr --no-tabs --braces-on-func-def-line --indent-level2
|
||||
|
||||
TARGETS=approximate-pi linked-list mandelbrot threads circular-buffer structs ncurses-pong bit-fuckery bit-fuckery2 checkcheck multibrot bloom wo-lernen
|
||||
TARGETS=approximate-pi linked-list mandelbrot threads circular-buffer structs ncurses-pong bit-fuckery bit-fuckery2 checkcheck multibrot bloom wo-lernen lua-foo
|
||||
EXTRAS=mandelbrot.bmp multibrot.png
|
||||
|
||||
.PHONY: all
|
||||
|
@ -31,3 +31,6 @@ multibrot: multibrot.c
|
|||
|
||||
multibrot.png: multibrot
|
||||
./multibrot -j2
|
||||
|
||||
lua-foo: lua-foo.c
|
||||
$(CC) $(CFLAGS) -o $@ $< -llua -lm
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue