home | blog | art | now | git gpg | email | rss

morph

Generate xresources colors from an image.
git clone https://pollux.codes/git/morph.git
Log | Files | Refs | README | LICENSE

config.mk (297B)


      1 # morph version
      2 VERSION = 0.1
      3 
      4 PREFIX = /usr/local
      5 MANPREFIX = $(PREFIX)/share/man
      6 
      7 # includes and libs
      8 INCS = 
      9 LIBS = -lImlib2 -lm
     10 
     11 # flags
     12 CPPFLAGS = -D_POSIX_C_SOURCE=200809L -DVERSION=\"$(VERSION)\"
     13 CFLAGS = -std=c99 -O3 -Wall -Wpedantic -Werror $(INCS) $(CPPFLAGS)
     14 LDFLAGS = $(LIBS)
     15 
     16 CC = cc