1
0
mirror of https://github.com/ericonr/sndio.git synced 2024-02-18 04:45:21 -06:00
sndio/Makefile.in
Alexandre Ratchov b45b76b8e0 dont call sock_read() on the write path; the reader state
is SOCK_RMSG and sock_read() will be called from the poll loop
2012-11-07 09:54:02 +01:00

28 lines
543 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