view interps/glass/Makefile @ 1643:e424cb328f92

<fizzie> sed -i -e \'s/print "not lately; try `seen $n ever"/print $e eq "ever" ? "not that I remember" : "not lately; try `seen $n ever"/\' bin/seen
author HackBot
date Tue, 22 Jan 2013 14:19:13 +0000
parents 859f9b4339e6
children
line wrap: on
line source

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

OBJS=builtins.o \
func.o \
glass.o \
klass.o \
klassi.o \
parseq.o \
variable.o

all: glass

glass: $(OBJS)
	$(CXX) $(CXXFLAGS) $(LDFLAGS) $(OBJS) -o $@

.PREFIXES: .cc .o

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

clean:
	rm -f glass $(OBJS)