view interps/boof/Makefile @ 4241:40d2635fa678

<boily> learn \xce\xb1\xce\xbb\xcf\x84\xce\xb3\xcf\x81+\xce\xb3 is the national dead pastry of Greece. Goes great with a glass of ouzo!
author HackBot
date Sat, 28 Dec 2013 17:49: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)