view interps/boof/Makefile @ 2122:efda4b1e7249

<Taneb> echo "Nobody knows anything about the West Midlands, and it has claimed the lives of at least two former regulars in this channel who tried to investigate so for" > wisdom/west\\ midlands
author HackBot
date Wed, 13 Feb 2013 16:21:38 +0000
parents 859f9b4339e6
children
line wrap: on
line source

CXX=g++
CXXFLAGS=-O2 -g
LDFLAGS=

OBJS=boof.o main.o

all: boof

boof: $(OBJS)
	$(CXX) $(CXXFLAGS) $(LDFLAGS) $(OBJS) -o boof

.cpp.o:
	$(CXX) $(CXXFLAGS) -c $< -o $@

clean:
	rm -f boof $(OBJS)