[project @ 2000-08-09 11:21:21 by simonmar]
[ghc-hetmet.git] / ghc / utils / genprimopcode / Makefile
1 TOP=../..
2 include $(TOP)/mk/boilerplate.mk
3
4 INSTALL_PROGS += genprimopcode
5
6 SRC_HC_OPTS += -syslib text
7 OBJS = Main.o
8
9 CLEAN_FILES += genprimopcode
10
11 # genprimopcode is needed to boot in ghc/compiler...
12 boot :: all
13
14 all :: genprimopcode
15
16 genprimopcode: Main.o
17         $(HC) -o $@ $(HC_OPTS) $(LD_OPTS) $(OBJS)
18
19 CLEAN_FILES += genprimopcode
20 CLEAN_FILES += $(OBJS)
21
22 include $(TOP)/mk/target.mk