aboutsummaryrefslogtreecommitdiff
path: root/fly-tools/config.mk
diff options
context:
space:
mode:
authormutantturkey <mutantturke@gmail.com>2012-06-15 00:23:02 -0400
committermutantturkey <mutantturke@gmail.com>2012-06-15 00:23:02 -0400
commitcd799e745303da79df16e33fa6e348ff5436763f (patch)
treed9b0d488df5afc2938c18c81a9accec276382248 /fly-tools/config.mk
parent68eed608949b3b2ecb3d87a72886ae917ff7bc0f (diff)
a working Makefile \!
Diffstat (limited to 'fly-tools/config.mk')
-rw-r--r--fly-tools/config.mk23
1 files changed, 0 insertions, 23 deletions
diff --git a/fly-tools/config.mk b/fly-tools/config.mk
deleted file mode 100644
index e41bf88..0000000
--- a/fly-tools/config.mk
+++ /dev/null
@@ -1,23 +0,0 @@
-VERSION = 0.0.1
-
-# Customize below to fit your system
-
-# paths
-PREFIX = /usr
-MANPREFIX = ${PREFIX}/share/man
-
-
-# includes and libs
-
-GTKINC=$(shell pkg-config --cflags gtk+-2.0 vte )
-GTKLIB=$(shell pkg-config --libs gtk+-2.0 vte )
-
-INCS = -I. -I/usr/include $(pkg-config --cflags Magick++ gsl)
-LIBS = -L/usr/lib -lc $(pkg-config --libs Magick++ gsl)
-# flags
-CPPFLAGS = -DVERSION=\"${VERSION}\"
-CFLAGS = -mtune=native -std=gnu99 -O2 -s ${INCS} ${CPPFLAGS}
-LDFLAGS = -s ${LIBS}
-
-# compiler and linker
-CC = g++