X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=src%2FMakefile.am;h=64939a31a32ffdedc815002f3948c54025c90b0c;hb=a9c7078e69b49d54f86169fde67b7fee55256b52;hp=67a788a46f698b5fadf6f94e058f68a358aa7778;hpb=cd9b92089bf40c7e21a914e06d45ef734aadd086;p=aweather diff --git a/src/Makefile.am b/src/Makefile.am index 67a788a..64939a3 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,7 +1,42 @@ -bin_PROGRAMS = aweather +SUBDIRS = plugins -aweather_SOURCES = aweather.c opengl.c cube.c radar.c -aweather_CPPFLAGS = @PACKAGE_CFLAGS@ -I/usr/local/trmm/GVBOX/include/ -aweather_LDADD = @PACKAGE_LIBS@ -L/usr/local/trmm/GVBOX/lib/ -lrsl +AM_CFLAGS = -Wall --std=gnu99 $(GIS_CFLAGS) +AM_LDFLAGS = -Wl,--export-dynamic +bin_PROGRAMS = aweather wsr88ddec +aweather_SOURCES = main.c \ + aweather-gui.c aweather-gui.h \ + aweather-location.c aweather-location.h +aweather_CPPFLAGS = \ + -DBROWSER="\"$(browser)\"" \ + -DHTMLDIR="\"$(dots)$(htmldir)\"" \ + -DPKGDATADIR="\"$(dots)$(pkgdatadir)\"" \ + -DPLUGINSDIR="\"$(dots)$(pkglibdir)\"" +aweather_LDADD = $(GIS_LIBS) +wsr88ddec = wsr88ddec.c +wsr88ddec_LDADD = $(GLIB_LIBS) -lbz2 + +if WIN32 +AM_LDFLAGS += -mwindows +aweather_SOURCES += resource.rc +dots = .. +browser = "open" +else +browser = "xdg-open" +endif + +.rc.o: ../data/aweather.ico + $(RC) -o $@ $< + +CLEANFILES = gmon.out valgrind.out +MAINTAINERCLEANFILES = Makefile.in + +test: all + .libs/aweather -o -d 7 + +gdb: all + gdb .libs/aweather + +ddd: all + ddd .libs/aweather