ffmpeg-hello/Makefile
2014-12-08 16:53:08 -05:00

10 lines
192 B
Makefile

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