about summary refs log tree commit diff stats
path: root/tinybasic/dice.bas
diff options
context:
space:
mode:
authorelioat <elioat@tilde.institute>2024-10-27 12:36:46 -0400
committerelioat <elioat@tilde.institute>2024-10-27 12:36:46 -0400
commit295ff18ed67628b20fa0664deb32487a21dab5ad (patch)
treecc8b58c6a8f9a2b82133184647643ee5a17381d0 /tinybasic/dice.bas
parente97b158e6512b2616e756674ab16018b00e440c0 (diff)
downloadtour-295ff18ed67628b20fa0664deb32487a21dab5ad.tar.gz
*
Diffstat (limited to 'tinybasic/dice.bas')
0 files changed, 0 insertions, 0 deletions
t; 2008-05-19 15:05:46 +0100 make it easier for the user, if Xinerama support is given, always use the screen 0 as window area/bar area, everything else can be used for floating clients' href='/acidbong/suckless/dwm/commit/config.mk?h=5.8.2&id=f22d047d4139ef889e95aabd0103e11357193e5a'>f22d047 ^
1076f2b
14f7380 ^
f22d047 ^
1076f2b
7b5638f ^
f22d047 ^
a8e0772 ^

d7e1708 ^
71fd06f ^


71fd06f ^
95766d6 ^
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
25
26
27
28
29
30
31
             
             


                                    

                   




                               
                                        


                                     
                   
                                     
                                                       
 
       
                                                    

                                                         
 


                                                
 
                     
       
# dwm version
VERSION = 5.1

# Customize below to fit your system

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

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

# Xinerama, comment if you don't want it
XINERAMALIBS = -L${X11LIB} -lXinerama
XINERAMAFLAGS = -DXINERAMA

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

# flags
CPPFLAGS = -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
LDFLAGS = -s ${LIBS}

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

# compiler and linker
CC = cc