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

10 lines
191 B
Makefile

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