From 366701768b4e7e31e3d96071700783a49bcbd078 Mon Sep 17 00:00:00 2001 From: deva Date: Sun, 22 Nov 2009 09:56:08 +0000 Subject: Added editor for automated chopping up of audiofiles into samples. --- dgedit/Makefile.am | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 dgedit/Makefile.am (limited to 'dgedit/Makefile.am') diff --git a/dgedit/Makefile.am b/dgedit/Makefile.am new file mode 100644 index 0000000..5182fd5 --- /dev/null +++ b/dgedit/Makefile.am @@ -0,0 +1,36 @@ +bin_PROGRAMS = dgedit + +dgedit_LDADD = $(SNDFILE_LIBS) $(QT_LIBS) $(shell ../tools/MocList o ) + +dgedit_CXXFLAGS = $(SNDFILE_CXXFLAGS) $(QT_CFLAGS) +CXXFLAGS += $(QT_CFLAGS) + +dgedit_SOURCES = $(shell ../tools/MocList cc ) \ + dgedit.cc \ + audioextractor.cc \ + canvas.cc \ + mainwindow.cc + +EXTRA_DIST = \ + audioextractor.h \ + canvas.h \ + mainwindow.h + +dgedit_MOC = $(shell ../tools/MocList cc ) + +BUILT_SOURCES = $(dgedit_MOC) + +CLEANFILES = $(BUILT_SOURCES) + +%.moc.cc: %.h + $(QT_MOC) -o $@ $< + +%.h: %.ui + $(QT_UIC) -o $@ $< + +%.cc: %.ui + $(QT_UIC) -o $@ -impl $*.h $< + +# command for creating .res file from .rc on Win32 +%.res: %.rc + rc $< -- cgit v1.2.3