move source files to src dir

This commit is contained in:
Sebastian Krzyszkowiak 2012-02-19 20:40:22 +01:00
parent 5adce49bf9
commit 4a3160b3b8
14 changed files with 2 additions and 2 deletions

2
.gitignore vendored
View file

@ -1,4 +1,4 @@
*~
allegro.log
superderpy
bin
others

2
make
View file

@ -1,2 +1,2 @@
#!/bin/sh
gcc loading.c main.c menu.c about.c intro.c map.c -o superderpy -lallegro -lallegro_audio-debug -lallegro_acodec-debug -lallegro_image-debug -lallegro_font-debug -lallegro_ttf-debug -DDEBUG -std=gnu99 -g -Wall && ./superderpy
gcc src/loading.c src/main.c src/menu.c src/about.c src/intro.c src/map.c -o bin/superderpy -lallegro -lallegro_audio-debug -lallegro_acodec-debug -lallegro_image-debug -lallegro_font-debug -lallegro_ttf-debug -DDEBUG -std=gnu99 -g -Wall && ./bin/superderpy

View file

View file

View file

View file

View file

View file