[alsa-devel] newie, adding a file to the project
Hello,
I am trying to add a file (aplay_miversion.c) to the project to make tests. I have modified the Makefile.am file of the aplay directory in the project. I have run ./configure and make and I don't get the file compiled. How shold I change the lines?
LIBRT = @LIBRT@
INCLUDES = -I$(top_srcdir)/include LDADD = $(LIBINTL) $(LIBRT)
# debug flags #LDFLAGS = -static #LDADD += -ldl
bin_PROGRAMS = aplay aplay_miversion
aplay_SOURCES = aplay.c aplay_miversion_SOURCES = aplay_miversion.c
man_MANS = aplay.1 arecord.1 noinst_HEADERS = formats.h
EXTRA_DIST = aplay.1 arecord.1 EXTRA_CLEAN = arecord
arecord: aplay rm -f arecord $(LN_S) $< $@
arecord.1: aplay.1 rm -f arecord.1 $(LN_S) $< $@
install-exec-hook: arecord rm -f $(DESTDIR)$(bindir)/arecord (cd $(DESTDIR)$(bindir) && $(LN_S) aplay arecord)
install-data-hook: rm -f $(DESTDIR)$(mandir)/man1/arecord.1 (cd $(DESTDIR)$(mandir)/man1 && $(LN_S) aplay.1 arecord.1)
On 2010-06-23 16:46, javi perez wrote:
Hello,
I am trying to add a file (aplay_miversion.c) to the project to make tests. I have modified the Makefile.am file of the aplay directory in the project. I have run ./configure and make and I don't get the file compiled. How shold I change the lines?
Generic answer: if there is an "autogen.sh" script, try running it, otherwise try running "autoreconf -fi". They will update the configure file and the makefiles for you.
// David
participants (2)
-
David Henningsson
-
javi perez