aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid <dbphillipsnz@gmail.com>2014-06-04 19:54:12 +1200
committerDavid <dbphillipsnz@gmail.com>2014-06-06 20:31:40 +1200
commit38f928b2f33ec527490899e580e5ee1327a327e9 (patch)
tree8e7d50f2d5a50e20e8f384241afe782ea94653a3 /Makefile
parent4634e137f7c1ab4a06ae6b6e808510159be55000 (diff)
downloadparamano-38f928b2f33ec527490899e580e5ee1327a327e9.tar.xz
Moved away from manual setting of sudo-ness
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile38
1 files changed, 14 insertions, 24 deletions
diff --git a/Makefile b/Makefile
index eae2be7..d539b47 100644
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,24 @@
# Tabsize: 4
+# Build utils
MAKE = make
CC = gcc
+
+# Directories
PREFIX=/usr
BINDIR=$(PREFIX)/bin
+SYSCONFDIR=/etc
SHAREDIR=$(PREFIX)/share
-LOCALEDIR=$(SHAREDIR)/locale/
+LOCALEDIR=$(SHAREDIR)/locale
-SUDO=/usr/bin/sudo
+# External program/support programs
+SUDO=$(BINDIR)/sudo
TRAYFREQ_SET=$(BINDIR)/trayfreq-set
-TRAYFREQ_CONF=/etc/trayfreq.conf
+
+# Misc
+TRAYFREQ_CONF=$(SYSCONFDIR)/trayfreq.conf
+ROOT_UID=0
+
ifdef DEBUG
EXTRA_CFLAGS+=-DDEBUG
@@ -20,14 +29,14 @@ EXTRA_CFLAGS+= -DPREFIX=\"$(PREFIX)\" \
-DSUDO=\"$(SUDO)\" \
-DTRAYFREQ_SET=\"$(TRAYFREQ_SET)\" \
-DLOCALEDIR=\"$(LOCALEDIR)\" \
- -DSHAREDIR=\"$(SHAREDIR)\"
+ -DSHAREDIR=\"$(SHAREDIR)\" \
+ -DROOT_UID=$(ROOT_UID)
DEPS = bat_tray.h \
bool.h \
common.h \
config_file.h \
- debug.h \
defaults.h \
getcore.h \
getfreq.h \
@@ -37,7 +46,6 @@ DEPS = bat_tray.h \
tray.h \
trayfreq_set_interface.h
-
trayfreq_CFLAGS = -I/usr/include/gtk-2.0 \
-I/usr/lib/gtk-2.0/include \
-I/usr/include/pango-1.0 \
@@ -53,28 +61,11 @@ trayfreq_LDFLAGS = -lgtk-3 \
-lgobject-2.0 \
-lglib-2.0
-trayfreq_SOURCES = freq_tray/getcore.c \
- freq_tray/getfreq.c \
- freq_tray/getgov.c \
- tray.c \
- trayfreq.c \
- trayfreq_set/trayfreq_set_interface.c \
- config_file.c \
- defaults.c \
- bat_tray/bat_tray.c \
- common.c \
- reload.c
-
trayfreq_set_CFLAGS = -Wall \
-D_=gettext
trayfreq_set_LDFLAGS = -lglib-2.0
-trayfreq_set_SOURCES = trayfreq_set/trayfreq_set.c \
- freq_tray/getfreq.c \
- freq_tray/getcore.c
-
-
########################################################################
# Make entire suite
all: trayfreq trayfreq-set lang trayfreq.conf
@@ -108,7 +99,6 @@ trayfreq-set: \
########################################################################
-
########################################################################
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(trayfreq_CFLAGS) $(EXTRA_CFLAGS)