view interps/glass/Makefile @ 3989:ae39be980fb0

<Taneb> echo "Real Fast Nora\'s Hair Salon 3: Shear Disaster Download is the most readable functional programming language out there." > wisdom/Real\\ Fast\\ Nora\\\'s\\ Hair\\ Salon\\ 3\\:\\ Shear\\ Disaster\\ Download
author HackBot
date Wed, 06 Nov 2013 18:51:11 +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)