lsyncd/distclean.sh

23 lines
329 B
Bash
Raw Normal View History

2016-12-13 13:56:23 +00:00
#!/bin/sh
2018-04-22 15:52:35 +00:00
#
# Removes all stuff generated by cmake / make
#
# This mini script supposes an inplace build.
#
2018-03-13 15:09:41 +00:00
rm -rf build/ CMakeFiles/
rm -f \
AdditionalInfo.txt \
config.h \
Makefile \
CMakeCache.txt \
cmake_install.cmake \
install_manifest.txt \
2018-04-22 15:52:35 +00:00
signames.lua \
2018-04-03 06:54:07 +00:00
default.c \
core.c \
2018-03-13 15:09:41 +00:00
*.o \
*.out \
core/*.o \
lsyncd