X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=blobdiff_plain;f=Makefile;h=c2a45639e24e8762af95f8f90a63117843f1ea0f;hp=77f75e6926d0329ccaaaafe715904bcedcd9898a;hb=dc5c070c44d9af434405c8d6538abd06299d3298;hpb=7b5638f61d5c8b5a76bc3f7a5962cb7490da3b6b diff --git a/Makefile b/Makefile index 77f75e6..c2a4563 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,11 @@ options: @echo CC $< @${CC} -c ${CFLAGS} $< -${OBJ}: dwm.h +${OBJ}: dwm.h config.h + +config.h: + @echo missing config.h created + @cp config.default.h $@ dwm: ${OBJ} @echo LD $@ @@ -58,3 +62,5 @@ uninstall: for i in ${MAN1}; do \ rm -f ${DESTDIR}${MANPREFIX}/man1/`basename $$i`; \ done + +.PHONY: all options clean dist install uninstall