git-svn-id: https://subversion.xor.aps.anl.gov/synApps/areaDetector/trunk@9975 dc6c5ff5-0b8b-c028-a01f-ffb33f00fc8b
25 lines
509 B
Makefile
25 lines
509 B
Makefile
HTMLFLAGS = --book --duplex --no-numbered --format pdf14 --title --size letter
|
|
|
|
%.pdf: %.html
|
|
-htmldoc $(HTMLFLAGS) --outfile $@ $<
|
|
|
|
all: areaDetectorDoc.pdf doxygen iocBootDocs install
|
|
|
|
doxygen:
|
|
doxygen
|
|
|
|
iocBootDocs:
|
|
./makeIOCBootDocs
|
|
|
|
install:
|
|
cp -f *.html /home/epics/web_software/epics
|
|
cp -f *.png /home/epics/web_software/epics
|
|
cp -f *.jpg /home/epics/web_software/epics
|
|
cp -rfp areaDetectorDoxygenHTML /home/epics/web_software/epics/
|
|
|
|
clean:
|
|
rm -rf areaDetectorDoxygenHTML/*
|
|
|
|
|
|
realclean: clean
|