about summary refs log tree commit diff stats
path: root/debian/rules
Commit message (Expand)AuthorAgeFilesLines
* deb packaging files (tested on debian unstable) and rpm spec fileFlorent Peterschmitt2013-06-051-0/+8
href='#n20'>20 21 22 23 24 25
# dwm version
VERSION = 1.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. -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}

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