Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
matja committed Dec 27, 2015
0 parents commit a767d38
Show file tree
Hide file tree
Showing 2 changed files with 678 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Makefile
@@ -0,0 +1,16 @@

CXX = g++

PKG_CONFIGS = libavcodec libavutil libavfilter libavformat libswscale
INCLUDE = $(shell pkg-config --cflags-only-I $(PKG_CONFIGS))
LIBS = -lm $(shell pkg-config --libs-only-l $(PKG_CONFIGS))

.PHONY: all clean run

all : video-morse-decode

clean :
-rm -f video-morse-decode

video-morse-decode : video-morse-decode.cpp
$(CXX) -O2 -std=c++14 $(INCLUDE) -o $@ $< $(LIBS)

0 comments on commit a767d38

Please sign in to comment.