Cabalize ext-core tools
[ghc-hetmet.git] / utils / hasktags / Makefile
1 TOP=../..
2 include $(TOP)/mk/boilerplate.mk
3
4 # Beyond stage 1, honour any Mac OS X depolyment target options.  If we use 
5 # these options in stage 1 we get a linker error if the bootstrap compiler is
6 #  for a more recent OS version
7 ifeq "$(stage)" "2"
8 SRC_CC_OPTS += $(MACOSX_DEPLOYMENT_CC_OPTS)
9 SRC_HC_OPTS += $(addprefix -optc, $(MACOSX_DEPLOYMENT_CC_OPTS))
10 SRC_LD_OPTS += $(addprefix -optl, $(MACOSX_DEPLOYMENT_LD_OPTS))
11 endif
12
13 # We have two version: the inplace version compiled by the bootstrap compiler
14 #   and the install version compiled by the stage 1 compiler
15 ifeq "$(stage)" "2"
16 HS_PROG           = hasktags
17 else
18 HS_PROG           = hasktags-inplace
19 endif
20
21 CLEAN_FILES += Main.hi
22
23 SRC_HC_OPTS += -Wall
24
25 INSTALL_PROGS += $(HS_PROG)
26
27 binary-dist:
28         $(INSTALL_DIR)                $(BIN_DIST_DIR)/utils/hasktags
29         $(INSTALL_DATA)    Makefile   $(BIN_DIST_DIR)/utils/hasktags/
30         $(INSTALL_PROGRAM) $(HS_PROG) $(BIN_DIST_DIR)/utils/hasktags/
31
32 include $(TOP)/mk/target.mk