about summary refs log tree commit diff stats
path: root/html/301array-equal.subx.html
Commit message (Expand)AuthorAgeFilesLines
* .Kartik Agaram2021-05-181-7/+7
* .Kartik Agaram2021-04-211-3/+3
* .Kartik Agaram2021-03-231-25/+34
* 7476Kartik Agaram2020-12-301-1/+1
* 7227Kartik Agaram2020-11-111-5/+2
* 7162Kartik Agaram2020-11-021-62/+75
* 6958Kartik Agaram2020-10-051-4/+4
* 6631Kartik Agaram2020-07-101-0/+477
> 2006-08-01 12:32:33 +0200 applied Sanders patches' href='/acidbong/suckless/dwm/commit/config.mk?h=master&id=7b5638f61d5c8b5a76bc3f7a5962cb7490da3b6b'>7b5638f ^
1076f2b
7b5638f ^
ecc95c9 ^
12b1d43 ^
e9cfae7 ^

d7e1708 ^
71fd06f ^




95766d6 ^
1076f2b
95766d6 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
             
             


                                    

                   




                               
                   
                                     
                                       
 
       
                                             
                 

                                                       
 




                                                
                     
       
          
# dwm version
VERSION = 2.9

# 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. -I/usr/include -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}

# Solaris
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = ${LIBS}
#CFLAGS += -xtarget=ultra

# compiler and linker
CC = cc
LD = ${CC}