Another copy of my dotfiles. Because I don't completely trust GitHub.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
327 B

  1. # quark version
  2. VERSION = 0
  3. # Customize below to fit your system
  4. # paths
  5. PREFIX = /usr/local
  6. MANPREFIX = $(PREFIX)/share/man
  7. # flags
  8. CPPFLAGS = -DVERSION=\"$(VERSION)\" -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=700 -D_BSD_SOURCE
  9. CFLAGS = -std=c99 -pedantic -Wall -Wextra -Os
  10. LDFLAGS = -lpthread -s
  11. # compiler and linker
  12. CC = cc