git @ Cat's Eye Technologies Pixley / master impl / haney / Makefile
master

Tree @master (Download .tar.gz)

Makefile @masterraw · history · blame

# GNU Makefile for haney.

PROG=haney
GHC?=ghc
STRIP?=strip
O?=.o
EXE?=

MODULES=Main.hs Pixley.lhs

all: haney

haney: $(MODULES)
	$(GHC) --make Main.hs -o $(PROG)
	$(STRIP) ./$(PROG)

clean:
	rm -f *.o *.hi *.exe ${PROG}${EXE}