uncrustify source code

This commit is contained in:
neingeist 2014-04-19 18:23:49 +02:00
parent ca15f19709
commit 8141a18cab
14 changed files with 1610 additions and 27 deletions

View file

@ -35,6 +35,10 @@ cppcheck.txt: *.c *.h
tags: *.c
ctags -R .
.PHONY: uncrustify
uncrustify:
uncrustify -c uncrustify.cfg --no-backup *.c
mandelbrot: mandelbrot.c
$(CC) $(CFLAGS) $(shell sdl-config --cflags) -o $@ $< $(shell sdl-config --libs) -lm