Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | removed font-shtuff from deps |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | master |
Files: | files | file ages | folders |
SHA3-256: |
8f4870e4614cae4ecfdfdbb3e526b90c |
User & Date: | jesse@mccluresk9.com 2014-09-08 22:02:18 |
Context
2014-09-25
| ||
00:38 | fixing up deb packaging check-in: 7e6ae839bc user: jesse@mccluresk9.com tags: trunk, master | |
2014-09-08
| ||
22:02 | removed font-shtuff from deps check-in: 8f4870e461 user: jesse@mccluresk9.com tags: trunk, master | |
22:01 | Merge branch 'master' of http://github.com/TrilbyWhite/fex check-in: e9fcafff2b user: jesse@mccluresk9.com tags: trunk, master | |
Changes
Changes to Makefile.
1 2 3 | PROG = fex VER = 2.0 CC ?= gcc | | | 1 2 3 4 5 6 7 8 9 10 11 | PROG = fex VER = 2.0 CC ?= gcc DEPS = x11 cairo fftw3 sndfile DEFS = -DPROGRAM_NAME=${PROG} -DPROGRAM_VER=${VER} CFLAGS += $(shell pkg-config --cflags ${DEPS}) ${DEFS} LDLIBS += $(shell pkg-config --libs ${DEPS}) -lm -lXpm PREFIX ?= /usr MODULES = config fex fft spectro wave xlib HEADERS = fex.h MANPAGES = fex.1 fex-help.1 |
︙ | ︙ |