Skip to content

Instantly share code, notes, and snippets.

View PeteBlackerThe3rd's full-sized avatar
💭
Cramming in a couple of extra hours each day

Pete Blacker PeteBlackerThe3rd

💭
Cramming in a couple of extra hours each day
View GitHub Profile
@kevinhughes27
kevinhughes27 / Makefile
Created April 4, 2013 15:51
g++ Makefile for OpenCV Project
CC = g++
CFLAGS = -g -Wall
SRCS = HelloWorld.cpp
PROG = HelloWorld
OPENCV = `pkg-config opencv --cflags --libs`
LIBS = $(OPENCV)
$(PROG):$(SRCS)
$(CC) $(CFLAGS) -o $(PROG) $(SRCS) $(LIBS)