From 7eb795bc1928e95b33bb5216f744d2dc200343f8 Mon Sep 17 00:00:00 2001 From: Alexandre Ratchov Date: Mon, 12 Nov 2012 09:31:49 +0100 Subject: [PATCH] connect sndiod to the install target --- Makefile.in | 2 +- aucat/Makefile.in | 14 +++----------- 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/Makefile.in b/Makefile.in index 3d50822..2e34dad 100644 --- a/Makefile.in +++ b/Makefile.in @@ -7,7 +7,7 @@ all: install: cd libsndio && ${MAKE} install cd aucat && ${MAKE} install -# cd sndiod && ${MAKE} install + cd sndiod && ${MAKE} install uninstall: cd libsndio && ${MAKE} uninstall diff --git a/aucat/Makefile.in b/aucat/Makefile.in index 9d2aac8..3b72f40 100644 --- a/aucat/Makefile.in +++ b/aucat/Makefile.in @@ -23,8 +23,8 @@ MAN1_DIR = @mandir@/man1 # # programs to build # -PROG = aucat sndiod -MAN1 = aucat.1 sndiod.1 +PROG = aucat +MAN1 = aucat.1 all: ${PROG} ${MAN1} @@ -32,15 +32,13 @@ install: mkdir -p ${DESTDIR}${BIN_DIR} ${DESTDIR}${MAN1_DIR} cp aucat ${DESTDIR}${BIN_DIR} cp aucat.1 ${DESTDIR}${MAN1_DIR} - ln -sf aucat ${DESTDIR}${BIN_DIR}/sndiod - ln -sf aucat.1 ${DESTDIR}${MAN1_DIR}/sndiod.1 uninstall: cd ${DESTDIR}${BIN_DIR} && rm -f ${PROG} cd ${DESTDIR}${MAN1_DIR} && rm -f ${MAN1} clean: - rm -f -- *.o aucat sndiod sndiod.1 + rm -f -- *.o aucat # ---------------------------------------------------------- dependencies --- @@ -52,12 +50,6 @@ wav.o aucat: ${OBJS} ${CC} ${LDFLAGS} ${LIB} -o aucat ${OBJS} ${LDADD} -sndiod: - ln -sf aucat sndiod - -sndiod.1: - ln -sf aucat.1 sndiod.1 - .c.o: ${CC} ${CFLAGS} ${INCLUDE} ${DEFS} -c $<