Merge pull request #217 from kybin/master

make all examples
This commit is contained in:
Micha Mettke 2016-08-25 14:15:45 +02:00 committed by GitHub
commit 7577513efc
1 changed files with 12 additions and 1 deletions

View File

@ -14,7 +14,8 @@ else
endif
endif
all: file_browser extended
all: file_browser extended canvas skinning
file_browser:
@mkdir -p bin
rm -f bin/file_browser $(OBJS)
@ -25,3 +26,13 @@ extended:
rm -f bin/extended $(OBJS)
$(CC) $(CFLAGS) -o bin/extended extended.c $(LIBS)
canvas:
@mkdir -p bin
rm -f bin/canvas $(OBJS)
$(CC) $(CFLAGS) -o bin/canvas canvas.c $(LIBS)
skinning:
@mkdir -p bin
rm -f bin/skinning $(OBJS)
$(CC) $(CFLAGS) -o bin/skinning skinning.c $(LIBS)