aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid <dbphillipsnz@gmail.com>2014-09-27 11:22:39 +1200
committerDavid <dbphillipsnz@gmail.com>2014-09-27 11:22:39 +1200
commit3cee02998b117ee10e081aa8a6678c16a8efa413 (patch)
tree62a27f91a0755349f74d5d5d30f485d32d1e1830 /Makefile
parent9f144943d69da2e88c304d392e0e3dc984036a28 (diff)
downloadparamano-3cee02998b117ee10e081aa8a6678c16a8efa413.tar.xz
New function for opening files or throwing debug output
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 7756920..c0cc1aa 100644
--- a/Makefile
+++ b/Makefile
@@ -80,11 +80,14 @@ paramano: bat_tray.o \
tray.o \
paramano_set_interface.o
$(CC) -o $@ $? $(LDFLAGS)
+########################################################################
+
########################################################################
# Make paramano-set utility
paramano-set: \
paramano_set.o \
+ common.o \
getcore.o \
getfreq.o \
getgov.o
@@ -122,9 +125,8 @@ paramano-extra:
# Strip all symbols from binaries
strip:
strip -s paramano paramano-set
-
########################################################################
-
+
########################################################################
# Remove generated files
@@ -146,6 +148,8 @@ install:
install -Dm 755 paramano $(DESTDIR)/$(PARAMANO)
install -Dm 755 paramano-set $(DESTDIR)/$(PARAMANO_SET)
+
+ # These provide some compatability with trayfreq
ln -s paramano $$(dirname $(DESTDIR)/$(PARAMANO))/trayfreq
ln -s paramano-set $$(dirname $(DESTDIR)/$(PARAMANO))/trayfreq-set
########################################################################