diff options
author | David <dbphillipsnz@gmail.com> | 2014-06-04 20:40:30 +1200 |
---|---|---|
committer | David <dbphillipsnz@gmail.com> | 2014-06-06 20:31:40 +1200 |
commit | b541698306f141de7ba31e0045e01c1ef04d9de4 (patch) | |
tree | 26a916db79d3a29f3d29561852a5a8577838b4ec /Makefile | |
parent | 38f928b2f33ec527490899e580e5ee1327a327e9 (diff) | |
download | paramano-b541698306f141de7ba31e0045e01c1ef04d9de4.tar.xz |
Tidy-up
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 38 |
1 files changed, 17 insertions, 21 deletions
@@ -28,6 +28,7 @@ EXTRA_CFLAGS+= -DPREFIX=\"$(PREFIX)\" \ -DBINDIR=\"$(BINDIR)\" \ -DSUDO=\"$(SUDO)\" \ -DTRAYFREQ_SET=\"$(TRAYFREQ_SET)\" \ + -DTRAYFREQ_CONF=\"$(TRAYFREQ_CONF)\" \ -DLOCALEDIR=\"$(LOCALEDIR)\" \ -DSHAREDIR=\"$(SHAREDIR)\" \ -DROOT_UID=$(ROOT_UID) @@ -46,25 +47,20 @@ 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 \ - -I/usr/include/cairo \ - -I/usr/include/gdk-pixbuf-2.0 \ - -I/usr/include/atk-1.0 \ - -I/usr/include/glib-2.0 \ - -I/usr/lib/glib-2.0/include \ - -Wall \ - -D_=gettext +CFLAGS = -I/usr/include/gtk-2.0 \ + -I/usr/lib/gtk-2.0/include \ + -I/usr/include/pango-1.0 \ + -I/usr/include/cairo \ + -I/usr/include/gdk-pixbuf-2.0 \ + -I/usr/include/atk-1.0 \ + -I/usr/include/glib-2.0 \ + -I/usr/lib/glib-2.0/include \ + -Wall \ + -D_=gettext -trayfreq_LDFLAGS = -lgtk-3 \ - -lgobject-2.0 \ - -lglib-2.0 - -trayfreq_set_CFLAGS = -Wall \ - -D_=gettext - -trayfreq_set_LDFLAGS = -lglib-2.0 +LDFLAGS = -lgtk-3 \ + -lgobject-2.0 \ + -lglib-2.0 ######################################################################## # Make entire suite @@ -85,7 +81,7 @@ trayfreq: bat_tray.o \ trayfreq.o \ tray.o \ trayfreq_set_interface.o - $(CC) -o $@ $? $(trayfreq_LDFLAGS) + $(CC) -o $@ $? $(LDFLAGS) ######################################################################## # Make trayfreq-set utility @@ -95,13 +91,13 @@ trayfreq-set: \ getfreq.o \ getgov.o - $(CC) -o $@ $? $(trayfreq_set_LDFLAGS) + $(CC) -o $@ $? $(LDFLAGS) ######################################################################## ######################################################################## %.o: %.c $(DEPS) - $(CC) -c -o $@ $< $(trayfreq_CFLAGS) $(EXTRA_CFLAGS) + $(CC) -c -o $@ $< $(CFLAGS) $(EXTRA_CFLAGS) ######################################################################## |