ffmpeg-hello/Makefile

10 lines
214 B
Makefile

TARGET := hello
OBJS := hello.o
CFLAGS := $$(pkg-config --cflags libavformat libavcodec) -Wall
LDFLAGS := $$(pkg-config --libs libavformat libavcodec)
all: $(TARGET)
$(TARGET): $(OBJS)
$(CC) -o $@ $^ $(LDFLAGS)