Files
gstreamer-sample/tutorial/7/Makefile
T
2017-07-21 19:06:00 +08:00

10 lines
162 B
Makefile

SRC = $(wildcard *.c)
TARGET = $(patsubst %.c, %, $(SRC))
all: $(TARGET)
%:%.c
gcc -o $@ $< `pkg-config --libs --cflags gstreamer-1.0`
clean:
rm -f $(TARGET)