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