Commit message (Expand) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 3->4 colors | Anselm R. Garbe | 2006-08-24 | 1 | -1/+1 |
* | applied another config.mk patch made by sander | Anselm R.Garbe | 2006-08-16 | 1 | -1/+1 |
* | fixing small bug in config.mk | Anselm R.Garbe | 2006-08-15 | 1 | -2/+2 |
* | applied Sanders LD and resize patches | Anselm R.Garbe | 2006-08-14 | 1 | -1/+2 |
* | upgraded version info | Anselm R.Garbe | 2006-08-11 | 1 | -1/+1 |
* | next version is 0.8 | arg@10ksloc.org | 2006-08-07 | 1 | -1/+1 |
* | using -Os again, zoom is ignored in floating mode or on floating clients | arg@10ksloc.org | 2006-08-05 | 1 | -1/+1 |
* | no need for -g anymore, regexp matching works now | arg@10ksloc.org | 2006-08-04 | 1 | -4/+4 |
* | switched to regexp matching for Rules | arg@10ksloc.org | 2006-08-04 | 1 | -4/+4 |
* | fixed a type in README, and patched config.mk | arg@10ksloc.org | 2006-08-02 | 1 | -1/+1 |
* | removed the CONFIG variable from config.mk, renamed config.h into config.defa... | arg@10ksloc.org | 2006-08-02 | 1 | -5/+2 |
* | applied Sanders patches (numlock2) | arg@10ksloc.org | 2006-08-02 | 1 | -7/+7 |
* | uppercasing all define'd values (uppercase-prefixed should only be enum field... | arg@10ksloc.org | 2006-08-01 | 1 | -7/+7 |
* | centralized/externalized configuration to config.h | arg@10ksloc.org | 2006-08-01 | 1 | -2/+5 |
* | applied Sanders patches | arg@10ksloc.org | 2006-08-01 | 1 | -15/+9 |
* | s/0.5/0.6/ - my steps are wider than the reality | arg@10ksloc.org | 2006-07-21 | 1 | -1/+1 |
* | preparing 0.6 which will be available in the evening after sanders patch approx. | arg@10ksloc.org | 2006-07-21 | 1 | -6/+6 |
* | using double-linked list in order to get correct prev focus handling | arg@10ksloc.org | 2006-07-20 | 1 | -5/+5 |
* | cleaned up code | arg@10ksloc.org | 2006-07-20 | 1 | -1/+1 |
* | using O3 instead of Os, binary size still < 40kb | arg@10ksloc.org | 2006-07-20 | 1 | -1/+1 |
* | applied Jukka's patch with s/ModKeyMask/MODKEY/g | arg@10ksloc.org | 2006-07-19 | 1 | -1/+1 |
* | changed CFLAGs | arg@mmvi | 2006-07-18 | 1 | -5/+5 |
* | simplified Makefile | Anselm R. Garbe | 2006-07-17 | 1 | -1/+0 |
* | patched dwm | Anselm R. Garbe | 2006-07-17${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}${PREFIX}/bin @mkdir -p ${DESTDIR}${PREFIX}/bin @cp -f dwm ${DESTDIR}${PREFIX}/bin @chmod 755 ${DESTDIR}${PREFIX}/bin/dwm @echo installing manual page to ${DESTDIR}${MANPREFIX}/man1 @mkdir -p ${DESTDIR}${MANPREFIX}/man1 @sed 's/VERSION/${VERSION}/g' < dwm.1 > ${DESTDIR}${MANPREFIX}/man1/dwm.1 @chmod 644 ${DESTDIR}${MANPREFIX}/man1/dwm.1 uninstall: @echo removing executable file from ${DESTDIR}${PREFIX}/bin @rm -f ${DESTDIR}${PREFIX}/bin/dwm @echo removing manual page from ${DESTDIR}${MANPREFIX}/man1 @rm -f ${DESTDIR}${MANPREFIX}/man1/dwm.1 .PHONY: all options clean dist install uninstall |