summary refs log tree commit diff stats
path: root/lib/system/platforms.nim
Commit message (Expand)AuthorAgeFilesLines
* add wasm32 platformJacek Sieka2019-03-031-0/+2
* Nintendo switch support (#8069)Joey2018-06-271-1/+2
* rename 'nimrodVM' to 'nimVM'Andreas Rumpf2018-05-281-2/+2
* Add RISC-V (riscv64) support (#7417)Federico Ceratto2018-04-071-2/+4
* Introduce first class support for Android (#5772)Fredrik Høisæther Rasch2017-08-061-1/+3
* Add mips64 and mips64el CPU platforms (#5866)James Cowgill2017-08-031-0/+4
* add msp430 cpu supportKeerthan Jaic2015-08-261-0/+2
* Add arm64 support (untested)def2015-07-311-0/+2
* Add powerpc64el support (untested)def2015-07-311-0/+2
* Add Mipsel CPU support (untested)def2015-07-311-0/+2
* Happy new year!Guillaume Gelin2015-01-061-1/+1
* final version before removalAraq2014-12-081-0/+74
fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #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 = 4.4

# Customize below to fit your system

# additional layouts beside floating
SRC = tile.c

# 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 = -s ${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