1
0
mirror of https://github.com/ericonr/sndio.git synced 2024-02-18 04:45:21 -06:00
sndio/Makefile.in
2012-09-20 19:15:53 +02:00

28 lines
544 B
Makefile

all:
cd libsndio && ${MAKE}
cd aucat && ${MAKE}
# cd sndiod && ${MAKE}
cd examples && ${MAKE}
install:
cd libsndio && ${MAKE} install
cd aucat && ${MAKE} install
# cd sndiod && ${MAKE} install
uninstall:
cd libsndio && ${MAKE} uninstall
cd aucat && ${MAKE} uninstall
cd sndiod && ${MAKE} uninstall
clean:
cd libsndio && ${MAKE} clean
cd aucat && ${MAKE} clean
cd sndiod && ${MAKE} clean
cd examples && ${MAKE} clean
distclean: clean
rm -f \
Makefile libsndio/Makefile \
aucat/Makefile sndiod/Makefile \
examples/Makefile