aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index c4904f6..e6d9d5d 100644
--- a/Makefile
+++ b/Makefile
@@ -4,11 +4,11 @@ so:
${CC} -fPIC -shared ${SOURCE} -o object/libchad.so
dist:
- -mkdir object/chad/
+ -mkdir object/chad/ 2> /dev/null
for d in chad/ extern/; do \
- pushd $$d; \
+ pushd $$d &> /dev/null; \
find ./ -type f -name '*.h' -exec cp --parents {} ../object/chad/ \; ; \
- popd; \
+ popd &> /dev/null; \
done
clean: