|
Revision 4484, 0.5 KB
(checked in by jgaeddert, 6 years ago)
|
|
updating documentation generation
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | AM_CXXFLAGS = -Wall |
|---|
| 2 | |
|---|
| 3 | bin_PROGRAMS = Modulator |
|---|
| 4 | |
|---|
| 5 | Modulator_SOURCES = \ |
|---|
| 6 | Modulator.cpp \ |
|---|
| 7 | Modulator.h \ |
|---|
| 8 | main.cpp |
|---|
| 9 | |
|---|
| 10 | ossieName = Modulator |
|---|
| 11 | xmldir = $(prefix)/dom/xml/$(ossieName) |
|---|
| 12 | bindir = $(prefix)/dom/bin |
|---|
| 13 | |
|---|
| 14 | dist_xml_DATA = \ |
|---|
| 15 | Modulator.prf.xml \ |
|---|
| 16 | Modulator.scd.xml \ |
|---|
| 17 | Modulator.spd.xml |
|---|
| 18 | |
|---|
| 19 | # ---------- documentation --------- |
|---|
| 20 | |
|---|
| 21 | # make sure "make docs" doesn't conflict with |
|---|
| 22 | # separate docs/ directory |
|---|
| 23 | .PHONY: docs |
|---|
| 24 | |
|---|
| 25 | docs : |
|---|
| 26 | ./genDocs.py |
|---|
| 27 | |
|---|