view interps/boof/Makefile @ 1366:04e265f16aad

<coppro> addquote <coppro> GreyKnight: for instance, you can form a poset category from a bunch of tiles <GreyKnight> oh, that\'s why somebody was conflating category theory with bathroom interior design the other day :-D
author HackBot
date Fri, 11 Jan 2013 01:14:43 +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)