diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2010-12-31 01:25:15 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2010-12-31 01:25:15 +0100 |
commit | ad4beb4724074b16f0fffa972ac3fad3376ad2f2 (patch) | |
tree | 1e2955b08afb6758d0f285b95b6a27c14802497d | |
parent | 62afc373e8d3621574a4c2cfd577646258f1e8ed (diff) | |
download | virtualosc-ad4beb4724074b16f0fffa972ac3fad3376ad2f2.tar.gz |
support for source distributions using the "make dist" mechanism
-rw-r--r-- | Makefile.am | 3 | ||||
-rw-r--r-- | src/Makefile.am | 10 |
2 files changed, 11 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 6b75694..aae1bf9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,3 +1,6 @@ SUBDIRS = src +EXTRA_DIST = samples/sample.xml \ + samples/simple_osc.xml \ + samples/simple_osc.pd diff --git a/src/Makefile.am b/src/Makefile.am index eef69bb..2503f87 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,5 +1,11 @@ bin_PROGRAMS = controller -controller_SOURCES = controller.c xml.c graphics.c controls.c \ - fontface.c OSC-client.c osc.c +controller_SOURCES = controller.c controller.h \ + xml.c xml.h \ + graphics.c graphics.h \ + controls.c controls.h \ + fontface.c fontface.h \ + OSC-client.c OSC-client.h \ + osc.c osc.h +EXTRA_DIST = biosfont.h.cpp |