desuck

desuck - mrgrouse's suckless desktop environment based on their forks of suckless' X utilities.
Log | Files | Refs | Submodules

Makefile (818B)


      1 # desuck - desktop environment* based on suckless utilities
      2 # See LICENSE file for copyright and license details.
      3 SMLS = birdwm birdsurf birdmenu birdterm
      4 options:
      5 	@echo desuck build options:
      6 	@echo TODO: FIXME
      7 
      8 config.h:
      9 	make -C ${SMLS} config.h
     10 
     11 install:
     12 	make -C birdwm install
     13 # birdwm submodules, fullinstall target of birdwm does not work*
     14 	make -C birdwm/slstatus install
     15 	make -C birdwm/slock install
     16 # other birdforks of suckless utilities
     17 	make -C birdsurf install
     18 	make -C birdterm install
     19 	make -C birdmenu install
     20 
     21 clean:
     22 	#make -C ${SMLS} clean
     23 	make -C birdwm clean
     24 # birdwm submodules, fullclean target of birdwm does not work*
     25 	make -C birdwm/slstatus clean
     26 	make -C birdwm/slock clean
     27 # other birdforkcs of suckless utilities
     28 	make -C birdsurf clean
     29 	make -C birdterm clean
     30 	make -C birdmenu clean