about summary refs log tree commit diff stats
path: root/html/011run.cc.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-03-22 23:26:24 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-03-22 23:29:42 -0700
commit3749f99d24d448bc4acee3a01e000ee0c34cb80b (patch)
tree0e044b5ad637cf8f83313ca015c6e31ac9542719 /html/011run.cc.html
parentc0607ecca838360b8ba1133993601330f199c043 (diff)
downloadmu-3749f99d24d448bc4acee3a01e000ee0c34cb80b.tar.gz
.
Diffstat (limited to 'html/011run.cc.html')
0 files changed, 0 insertions, 0 deletions
04e893'>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