make all examples

This commit is contained in:
kim yongbin 2016-08-24 00:34:13 +09:00
parent b54bc88e47
commit 285e43c787
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)