efl/src/examples/edbus/Makefile.examples

22 lines
456 B
Makefile
Raw Normal View History

CC=gcc
COMMON_FLAGS=`pkg-config --libs --cflags eina,ecore,edbus2`
EXAMPLES= banshee client \
complex-types \
complex-types-client-eina-value \
complex-types-server \
connman-list-services \
ofono-dial \
server \
simple-signal-emit
all: examples
examples: $(EXAMPLES)
$(EXAMPLES):
$(CC) -o $@ $@.c $(COMMON_FLAGS)
clean:
@echo "Cleaning up built objects..."
@rm -Rf $(EXAMPLES)