X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=blobdiff_plain;f=Makefile;h=c2a45639e24e8762af95f8f90a63117843f1ea0f;hp=817c2e1f5654a8f7758bdef14dbc3dd9e8e4d6db;hb=dc5c070c44d9af434405c8d6538abd06299d3298;hpb=8cc7f3bace087dfb024a23115c211d82b35614ae diff --git a/Makefile b/Makefile index 817c2e1..c2a4563 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,8 @@ options: ${OBJ}: dwm.h config.h config.h: - cp config.default.h config.h + @echo missing config.h created + @cp config.default.h $@ dwm: ${OBJ} @echo LD $@ @@ -61,3 +62,5 @@ uninstall: for i in ${MAN1}; do \ rm -f ${DESTDIR}${MANPREFIX}/man1/`basename $$i`; \ done + +.PHONY: all options clean dist install uninstall