summary refs log tree commit diff stats
path: root/compiler.nimble
Commit message (Expand)AuthorAgeFilesLines
* Add nimsuggest to installDirs (#10035)Yuriy Glukhov2018-12-181-1/+1
* attempt to make the build green againAraq2017-01-071-1/+0
* use new nimble file format to make Nim's version DRYAraq2017-01-071-5/+4
* Fix compiler.nimble namespace violations.Dominik Picheta2017-01-031-1/+1
* updated development versionAraq2016-10-311-1/+1
* version bumpAndreas Rumpf2016-10-211-1/+1
* develop version is 0.15.1Araq2016-10-081-1/+1
* version changed to 0.15.0Araq2016-10-011-2/+2
* version bump for developmentAndreas Rumpf2016-06-111-1/+1
* version bump to 0.14.2Araq2016-06-081-1/+1
* update the version number in more placesAraq2016-06-071-2/+2
* updated version to 0.13.0Araq2016-01-181-1/+1
* updated compiler.nimble fileAraq2015-10-281-2/+2
* Update version in compiler.nimbleDominik Picheta2015-06-051-2/+2
* Add compiler.nimble file.Dominik Picheta2015-01-161-0/+11
: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
# dwm version
VERSION = 1.7.1

# 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}