X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=Makefile;h=31ae1c1020cfbd5def5f34e56a68a3ec5c1ce9ea;hb=4cdbd523e5f02f7cf392dda8690f95ce6eaff9dd;hp=9ef219a53c575f6adbbf5a8ae7f0e594ad0831fa;hpb=42277b111018c5e83cc867b04156511aa0914bf1;p=dwm.git diff --git a/Makefile b/Makefile index 9ef219a..31ae1c1 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,12 @@ # dwm - dynamic window manager -# (C)opyright MMVI Anselm R. Garbe +# (C)opyright MMVI-MMVII Anselm R. Garbe include config.mk -SRC = client.c draw.c event.c main.c tag.c util.c +SRC = client.c draw.c event.c main.c manage.c util.c OBJ = ${SRC:.c=.o} all: options dwm - @echo finished options: @echo dwm build options: @@ -26,7 +25,7 @@ config.h: @cp config.default.h $@ dwm: ${OBJ} - @echo LD $@ + @echo CC -o $@ @${CC} -o $@ ${OBJ} ${LDFLAGS} @strip $@