]> git.sesse.net Git - mlt/blob - src/examples/Makefile
Convert backtick to $(shell) in Makefiles.
[mlt] / src / examples / Makefile
1 CXXFLAGS += -Wall -g $(shell pkg-config mlt++ --cflags)
2 LDFLAGS += $(shell pkg-config mlt++ --libs)
3 CC=c++
4
5 all:            play
6
7 play:           play.o
8
9 play.o:         play.cpp
10
11 clean:
12         $(RM) play play.o
13
14 distclean: clean
15
16 install:
17
18 uninstall: