iphreeqc/doc/Makefile
Scott R Charlton eaf070d56b Updated Makefile; changed single-quotes to double-quotes since they didn't format correcly in html
git-svn-id: svn://136.177.114.72/svn_GW/IPhreeqc/trunk@4463 1feff8c3-07ed-0310-ac33-dd36852eb9cd
2010-05-24 23:08:45 +00:00

36 lines
745 B
Makefile

TARGET = IPhreeqc.chm
HEADERS = \
../include/IPhreeqc.h \
../include/Var.h \
../include/IPhreeqc.hpp
EXAMPLES = \
examples/AccumulateLine.c \
examples/CreateIPhreeqc.c \
examples/GetComponent.c \
examples/GetDumpString.c \
examples/GetSelectedOutputValue.c \
examples/F90ClearAccumulatedLines.f90 \
examples/F90CreateIPhreeqc.f90 \
examples/F90DestroyIPhreeqc.f90 \
examples/F90GetComponent.f90 \
examples/F90GetSelectedOutputValue.f90 \
examples/F90GetDumpLine.f90 \
examples/F90GetDumpStringLine.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)