aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid <dbphillipsnz@gmail.com>2014-05-01 12:33:34 +1200
committerDavid <dbphillipsnz@gmail.com>2014-06-06 20:28:37 +1200
commitf3d42738f667dd09a4da9cc0a863c44e9cdb3666 (patch)
tree516d32ed74cb5c45e5772112b4b6d17cba2f21d7 /Makefile
parent0975414cc4f0a9deceb02553d174d2d605d0391d (diff)
downloadparamano-f3d42738f667dd09a4da9cc0a863c44e9cdb3666.tar.xz
Debug messages
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index b73b3aa..f17655b 100644
--- a/Makefile
+++ b/Makefile
@@ -3,8 +3,7 @@
MAKE = make
CC = gcc
INSTALL_PATH=/
-DEBUG=
-
+EXTRA_CFLAGS=
GLIB_CFLAGS = -I/usr/include/glib-2.0 \
-I/usr/lib/glib-2.0/include
@@ -50,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) $(DEBUG)
+ $(CC) -o trayfreq-set $(trayfreq_set_SOURCES) $(trayfreq_set_CFLAGS) $(trayfreq_set_LDFLAGS) $(EXTRA_CFLAGS)
########################################################################
########################################################################
# Make main trayfreq system tray program
trayfreq:
- $(CC) -o trayfreq $(trayfreq_SOURCES) $(trayfreq_CFLAGS) $(trayfreq_LDFLAGS) $(DEBUG)
+ $(CC) -o trayfreq $(trayfreq_SOURCES) $(trayfreq_CFLAGS) $(trayfreq_LDFLAGS) $(EXTRA_CFLAGS)
########################################################################
########################################################################