aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid <dbphillipsnz@gmail.com>2014-04-30 23:39:41 +1200
committerDavid <dbphillipsnz@gmail.com>2014-04-30 23:39:41 +1200
commitfe30fcc86801beec76acf219ad339afcbec36dff (patch)
treeaf678b9fefd39c53561b810d9ee9cef91876e81c /Makefile
parent71496891b2cf7b77a39874666ad1ebc014c7d345 (diff)
downloadparamano-fe30fcc86801beec76acf219ad339afcbec36dff.tar.xz
Adding debug stuff
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 9088522..b66f296 100644
--- a/Makefile
+++ b/Makefile
@@ -3,6 +3,7 @@
MAKE = make
CC = gcc
INSTALL_PATH=/
+DEBUG=
GLIB_CFLAGS = -I/usr/include/glib-2.0 \
@@ -48,14 +49,14 @@ all: trayfreq trayfreq-set lang
########################################################################
# Make trayfreq-set program for setting governors
trayfreq-set:
- $(CC) -o trayfreq-set $(trayfreq_set_SOURCES) $(trayfreq_set_CFLAGS) $(trayfreq_set_LDFLAGS)
+ $(CC) -o trayfreq-set $(trayfreq_set_SOURCES) $(trayfreq_set_CFLAGS) $(trayfreq_set_LDFLAGS) $(DEBUG)
########################################################################
########################################################################
# Make main trayfreq system tray program
trayfreq:
- $(CC) -o trayfreq $(trayfreq_SOURCES) $(trayfreq_CFLAGS) $(trayfreq_LDFLAGS)
+ $(CC) -o trayfreq $(trayfreq_SOURCES) $(trayfreq_CFLAGS) $(trayfreq_LDFLAGS) $(DEBUG)
########################################################################
########################################################################