view interps/glass/Makefile @ 2483:de55fddccc1b

<oerjan> addquote <Phantom_Hoover> http://www.independent.co.uk/news/uk/home-news/large-asbestoscontaminated-tarantula-on-the-loose-in-cardiff-8544532.html <Phantom_Hoover> finally, a solution to the problem of wales
author HackBot
date Fri, 22 Mar 2013 00:30:03 +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)