Makefile revision e8896c7bb416c4ced255a4d500808c2ea5a6869a
# Makefile
# $Header$
# Author: (c) Klaus L�ttich, Christian Maeder, Uni Bremen 2002-2005
# Year: 2004
# This Makefile will compile the new hets system and provides also
# targets for test programs during implementation phases.
# !!! Note: This makefile is written for GNU make !!!
# (gmake on solaris)
####################################################################
## Some varibles, which control the compilation
# the 'replacing spaces' example was taken from the (GNU) Make info manual
empty =
## set ghc imports properly for your system
DRIFT_ENV = \
# override on commandline for other architectures
INSTALLDIR = \
# -ddump-minimal-imports
# flags also come in via ../uni/uni-package.conf
# but added it here in case of compilation without uni
UNI_PACKAGE_CONF = $(wildcard ../uni/uni-package.conf)
# some modules from uni for haddock
### list of directories to run checks in
PFE_TOOLDIR = $(wildcard ../programatica/tools)
$< > $@
$@.hs -o $@
## rule for appendHaskellPreludeString
$(APPENDPRELUDESTRING) < $< > $@
Haskell_files = $(addsuffix .hs, \
## rule for ATC generation
### Profiling (only for debugging)
### Attention every module must be compiled with profiling or the linker
### cannot link the various .o files properly. So after switching on
### Profiling, do an 'gmake real_clean; gmake'
### and comment out HC_PACKAGE variable definition above.
### Comment in the following line for switching on profiling.
#HC_PROF = -prof -auto-all
####################################################################
## sources for hets
#endif
# sources that have {-# OPTIONS -cpp #-}
nondoc_sources = $(wildcard utils/DrIFT-src/*.hs) \
$(wildcard utils/GenerateRules/*.hs) \
$(wildcard utils/InlineAxioms/*.hs) \
# this variable holds the modules that should be documented
####################################################################
### targets
$(MAKE) real_clean
$(RM) $@
$(HC_FLAGS) -O
###############################
### TAGS files for (x)emacs
# load them with "M-x" "visit-tags-table" from
# "HetCATS/hetcats.TAGS"
# use "M-." to search for a tag
# !!Beware this is somewhat instable, because it uses an absolute path!!
hetcats.TAGS: $(sources)
###############################
### count lines of code
###############################
### Documentation via haddock
# generate haddock documentation with links to sources
-t 'Hets - the Heterogeneous Tool Set' \
# sources are not copied here
###############################
### release management
(cd utils/GenerateRules; \
GenerateRules.hs -o ../genRules && strip ../genRules)
$(INLINEAXIOMS): $(INLINEAXIOMS_deps)
-i../.. -o $(INLINEAXIOMS)
$(RM) -r programatica
if [ -d ../programatica ] ; then \
#############################
### ATC DrIFT-rule generation
gen_atc_files = \
###############
### clean up
### removes *.hi and *.o in all include directories
for p in $(CLEAN_PATH) ; do \
### remove binaries
$(RM) test_parser
### additonally removes *.d (dependency files) in every include directory
### also delete *.d.bak (dependency file backups)
for p in $(CLEAN_PATH) ; do \
### remove files also in own libraries
for p in $(COMMONLIB_PATH) ; do \
### additionally removes the files that define the sources-variable
### additionally removes files not in CVS tree
$(RM) $(derived_sources)
####################################################################
### test targets
####################################################################
### a parser to test annotation parser and Id parsers
### interactive
ghci:
### christian's target
### CASL parser
### HasCASL parser
### Haskell analysis
### HasCASL to Haskell translation
### HetCASL parser
### HetCASL parser
### ATC test system
### ATerm.Lib test system
### OWL_DL test target
### HetCASL with dev graph
### run tests in other directories
####################################################################
## Preparing the version of HetCATS
## two hardcoded dependencies for a correct generation of Version.hs
####################################################################
## rules for DrIFT
.SUFFIXES:
%: %.hs
$(HAPPY) $<
%.hs: %.y
$(HAPPY) -o $@ $<
## rules for inlineAxioms
$(INLINEAXIOMS) $< > $@
## rule for cpp and haddock
## compiling rules for object and interface files
## compiling rules for dependencies
%.d : %.hs
%.d : %.lhs
## rule for Modal/ModalSystems.hs needed for ModalLogic Translation