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