config

OpenBSD system configuration
git clone git://jacobedwards.org/config
Log | Files | Refs | README

suckless.mk (213B)


      1 # targets for suckless projects (and many other make(1) based)
      2 
      3 build: patch
      4 	cd ${dir} && make
      5 
      6 install: build
      7 	cd ${dir} && make install
      8 
      9 uninstall:
     10 	cd ${dir} && make uninstall
     11 
     12 .PHONY: build install uninstall