1# This just shortcuts stuff through to cmake
2client all build ctwm: ../build/Makefile
3	( cd ../build && ${MAKE} ${@} )
4
5../build/Makefile cmake: ../CMakeLists.txt
6	( cd .. && ${MAKE} cmake )
7
8clean allclean:
9	( cd .. && ${MAKE} ${@} )
10
11
12# Reindent files
13indent:
14	astyle -n --options=../tools/ctwm.astyle *.h *.c
15