view interps/boof/Makefile @ 5875:e4f2022ce100

<oerjan> le/rn uwe boll/Uwe Boll is the undefined behavior of cinematography.
author HackBot
date Mon, 27 Jul 2015 16:32:49 +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)