Makefile - tmuxwm - A window manager utilising only tmux.
 (HTM) git clone git://jay.scot/tmuxwm
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       Makefile (173B)
       ---
            1 CC = gcc
            2 CFLAGS = -lX11
            3 OBJ = tmuxwm.c
            4 NAME = tmuxwm
            5 
            6 all: tmuxwm
            7 
            8 tmuxwm: ${OBJ}
            9         @${CC} -o ${NAME} ${OBJ} ${CFLAGS}
           10 
           11 clean:
           12         rm -f ${NAME}
           13 
           14 install:
           15         cp ${NAME} /usr/bin/