about summary refs log tree commit diff stats
path: root/html/fake-console.png
Commit message (Expand)AuthorAgeFilesLines
* 3462Kartik K. Agaram2016-10-071-0/+0
b58fd89194cc00e956821e2c204'>863656d ^
3af6434 ^


1076f2b

1076f2b




1076f2b
7b5638f ^

1076f2b
7b5638f ^
ecc95c9 ^
12b1d43 ^


d7e1708 ^
7b5638f ^
1076f2b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
             
             


                                    

                   




                               
                   

                                       
 
       
                                             


                                                       
 
          
       
# dwm version
VERSION = 0.7

# Customize below to fit your system

# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man

X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib

# includes and libs
INCS = -I/usr/lib -I${X11INC}
LIBS = -L/usr/lib -lc -L${X11LIB} -lX11

# flags
CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\"
LDFLAGS = ${LIBS}
#CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = -g ${LIBS}

# compiler
CC = cc