examples/unsorted/emotion/Makefile.examples

19 lines
424 B
Makefile

CC=gcc
COMMON_FLAGS=`pkg-config --libs --cflags eo,eina,ecore,evas,ecore-evas,emotion`
EXAMPLES= emotion_basic_example \
emotion_border_example \
emotion_generic_example \
emotion_generic_subtitle_example \
emotion_signals_example
all: examples
examples: $(EXAMPLES)
$(EXAMPLES):
$(CC) -o $@ $@.c $(COMMON_FLAGS)
clean:
@echo "Cleaning up built objects..."
@rm -Rf $(EXAMPLES)