summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: d20c07259401a34c7fe5bbc6b892edfdf67c93f4 (plain)
1
2
3
4
5
6
7
8
9

default: fastback

fastback: fastback.o
	g++ -g -o $@ $$(curl-config --libs) $< 

fastback.o: fastback.cpp
	g++ -g -c -o $$(curl-config --cflags) $@ $<