My dmenu build
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 444 B

1234567891011121314151617181920212223242526
  1. # libdraw - dynamic drawing library
  2. # See LICENSE file for copyright and license details.
  3. include ../config.mk
  4. SRC = cleanupdraw.c setupdraw.c drawtext.c eprint.c getcolor.c initfont.c \
  5. textnw.c textw.c
  6. OBJ = ${SRC:.c=.o}
  7. all: libdraw.a
  8. .c.o:
  9. @echo CC $<
  10. @${CC} -c ${CFLAGS} $<
  11. ${OBJ}: ../config.mk draw.h
  12. libdraw.a: ${OBJ}
  13. @echo AR $@
  14. @ar cr $@ $+
  15. clean:
  16. @echo cleaning libdraw
  17. @rm -f libdraw.a ${OBJ}
  18. .PHONY: all options clean