Commit message (Expand) | Author | Age | Files | Lines | |||
---|---|---|---|---|---|---|---|
* | Add support for mktemps (#14347) | Max Grender-Jones | 2020-05-25 | 2 | -8/+24 | ||
* | Linux updates (#14170) | wltsmrz | 2020-05-04 | 3 | -9/+17 | ||
* | change 'iff' to 'if' to stop "corrections" once and for all (#14182) | Miran | 2020-05-01 | 4 | -12/+12 | ||
* | Make file descriptors from stdlib non-inheritable by default (#13201) | alaviss | 2020-04-20 | 7 | -1/+25 | ||
* | posix: add full Haiku support (#13931) | alaviss | 2020-04-09 | 2 | -2/+608 | ||
* | Deprecate DCE:on (#13839) | Juan Carlos | 20# dwm - dynamic window manager
# (C)opyright MMVI Anselm R. Garbe
include config.mk
SRC = client.c draw.c event.c main.c tag.c util.c view.c
OBJ = ${SRC:.c=.o}
all: options dwm
options:
@echo dwm build options:
@echo "CFLAGS = ${CFLAGS}"
@echo "LDFLAGS = ${LDFLAGS}"
@echo "CC = ${CC}"
@echo "LD = ${LD}"
.c.o:
@echo CC $<
@${CC} -c ${CFLAGS} $<
${OBJ}: dwm.h config.h config.mk
config.h:
@echo creating $@ from config.default.h
@cp config.default.h $@
dwm: ${OBJ}
@echo LD $@
@${LD} -o $@ ${OBJ} ${LDFLAGS}
@strip $@
clean:
@echo cleaning
@rm -f dwm ${OBJ} dwm-${VERSION}.tar.gz
dist: clean
@echo creating dist tarball
@mkdir -p dwm-${VERSION}
@cp -R LICENSE Makefile README config.*.h config.mk \
dwm.1 dwm.h ${SRC} dwm-${VERSION}
@tar -cf dwm-${VERSION}.tar dwm-${VERSION}
@gzip dwm-${VERSION}.tar
@rm -rf dwm-${VERSION}
install: all
@echo installing executable file to ${DESTDIR}${removes deprecated T/P types | Araq | 2018-11-16 | 5 | -71/+1 |
|/ | |||||||
* | inject `sig` from anonymous proc instead of for loop | Sebastian Schmidt | 2018-09-24 | 1 | -4/+5 | ||
* | fix `posix.onSignal` example, inject current signal as `s` | Vindaar | 2018-09-24 | 1 | -5/+11 | ||
* | Convert *_family fields to cushort | LemonBoy | 2018-09-19 | 5 | -15/+14 | ||
* | Fix regression due to type change | LemonBoy | 2018-09-16 | 1 | -1/+1 | ||
* | Fix connectUnix/bindUnix with abstract socket paths | LemonBoy | 2018-09-15 | 1 | -1/+1 | ||
* | Constant folding for integer casts (#8095) | LemonBoy | 2018-08-31 | 1 | -1/+1 | ||
* | Haiku support for Nim (#8542) | alaviss | 2018-08-14 | 1 | -1/+11 | ||
* | Add extended baud rates to posix/termios (#8322) | Jeff Ciesielski | 2018-07-16 | 1 | -0/+15 | ||
* | Deprecate 'c', 'C' prefix for octal literals, fixes #8082 (#8178) | Vindaar | 2018-07-03 | 1 | -20/+20 | ||
* | Nintendo switch support (#8069) | Joey | 2018-06-27 | 3 | -32/+1128 | ||
* | Use higher time resolution when available in os.nim (#7709) | Oscar Nihlgård | 2018-06-04 | 2 | -7/+25 | ||
* | remove dead code elimination option (#7669) | Jacek Sieka | 2018-04-23 | 7 | -14/+12 | ||
* | Change type of `Timeval.tv_sec` to `posix.Time` (#7646) | Oscar Nihlgård | 2018-04-18 | 2 | -4/+4 | ||
* | Move RLimit and getrlimit to posix.nim and add setrlimit to easily limit FD a... | aguspiza | 2018-04-12 | 2 | -1/+17 |