diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-09-14 17:39:42 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-09-14 17:39:42 +0200 |
commit | 849cfd830c119f6cb0f6a1ad090c0a4717614a45 (patch) | |
tree | 61bc8a70919892b49edd94d4ae2e40ec6934619f | |
parent | b69e6cd83b0fae4e72700326a8a2ebf526137071 (diff) | |
download | osc-graphics-849cfd830c119f6cb0f6a1ad090c0a4717614a45.tar.gz |
renamed effect-pad to osc-graphics
-rw-r--r-- | Makefile | 6 | ||||
-rw-r--r-- | main.c (renamed from effect-pad.c) | 0 |
2 files changed, 3 insertions, 3 deletions
@@ -18,10 +18,10 @@ CFLAGS := -std=c99 -Wall -g -O0 \ LDFLAGS := $(SDL_LDFLAGS) $(SDL_IMAGE_LDFLAGS) $(SDL_GFX_LDFLAGS) \ $(LIBVLC_LDFLAGS) -all : effect-pad +all : osc-graphics -effect-pad : effect-pad.o +osc-graphics : main.o $(CC) $(LDFLAGS) $^ -o $@ clean: - $(RM) *.o effect-pad{,.exe} + $(RM) *.o osc-graphics{,.exe} |