diff options
author | David <dbphillipsnz@gmail.com> | 2014-03-27 21:30:34 +1300 |
---|---|---|
committer | David <dbphillipsnz@gmail.com> | 2014-03-27 21:30:34 +1300 |
commit | ed92dbbd8f3537326e10ed8c2585df6302fed853 (patch) | |
tree | 91edcfaebc7ff9ce3a82ef70c80e51838270f95f /src/Makefile | |
parent | 10e92d96f03d035e9a4e95aa22eb22367024789b (diff) | |
download | paramano-ed92dbbd8f3537326e10ed8c2585df6302fed853.tar.xz |
FPE fixes
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile index d7f69d8..8dd15a9 100644 --- a/src/Makefile +++ b/src/Makefile @@ -17,12 +17,12 @@ VERSION = 0.2 trayfreq_SOURCES = getcore.c getcore.h getfreq.c getfreq.h getgov.c getgov.h tray.c tray.h trayfreq.c utilities.c utilities.h widget_manager.c widget_manager.h trayfreq_set_interface.c trayfreq_set_interface.h config_file.c config_file.h defaults.c defaults.h getbat.c getbat.h bat_tray.c bat_tray.h #trayfreq_SOURCES = getcore.c getcore.h getfreq.c getfreq.h getgov.c getgov.h tray.c tray.h trayfreq.c utilities.c utilities.h widget_manager.c widget_manager.h config_file.c config_file.h defaults.c defaults.h getbat.c getbat.h bat_tray.c bat_tray.h -trayfreq_CFLAGS = $(GTK_CFLAGS) $(GLIB_CFLAGS) -Wall -mfpmath=387 +trayfreq_CFLAGS = $(GTK_CFLAGS) $(GLIB_CFLAGS) -Wall trayfreq_LDFLAGS = $(GTK_LIBS) $(GLIB_LIBS) -lm -trayfreq_set_CFLAGS = $(GTK_CFLAGS) $(GLIB_CFLAGS) -Wall -mfpmath=387 +trayfreq_set_CFLAGS = $(GTK_CFLAGS) $(GLIB_CFLAGS) -Wall trayfreq_set_LDFLAGS = $(GTK_LIBS) $(GLIB_LIBS) -lm trayfreq_set_SOURCES = trayfreq_set.c getfreq.c getcore.c @@ -36,4 +36,4 @@ trayfreq: $(CC) -o trayfreq $(trayfreq_SOURCES) $(trayfreq_CFLAGS) $(trayfreq_LDFLAGS) clean: - rm trayfreq trayfreq-set
\ No newline at end of file + rm trayfreq trayfreq-set |