mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 08:38:23 +01:00
git-svn-id: svn://136.177.114.72/svn_GW/IPhreeqc/trunk@4401 1feff8c3-07ed-0310-ac33-dd36852eb9cd
28 lines
460 B
Makefile
28 lines
460 B
Makefile
TARGET = IPhreeqc.chm
|
|
|
|
HEADERS = \
|
|
../include/IPhreeqc.h \
|
|
../include/Var.h \
|
|
../include/IPhreeqc.hpp
|
|
|
|
EXAMPLES = \
|
|
examples/AccumulateLine.c \
|
|
examples/CreateIPhreeqc.c \
|
|
examples/GetDumpString.c \
|
|
examples/F90GetDumpLine.f90
|
|
|
|
|
|
all: $(TARGET)
|
|
|
|
IPhreeqc.chm: IPhreeqc.hhp TOC.hhc html/index.html
|
|
@hhc IPhreeqc.hhp || exit 0
|
|
|
|
view: $(TARGET)
|
|
cygstart $(TARGET)
|
|
|
|
html/index.html: Doxyfile $(HEADERS) $(EXAMPLES)
|
|
doxygen
|
|
|
|
clean:
|
|
rm -rf html $(TARGET)
|