view interps/glass/Makefile @ 2255:2eed7a363c07

<elliott> addquote <tswett> Hey, what VPN software should I use? <boily> tswett: openvpn. the one, the only, the open, the other qualifiers that begin with "o".
author HackBot
date Tue, 26 Feb 2013 16:32:52 +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)