X-Git-Url: http://pileus.org/git/?p=grits;a=blobdiff_plain;f=src%2FMakefile.am;h=d5e5fac0cbc01dc8bc1e37d3966deca1e44d2eb7;hp=0617f6aa2507dbb4e390dedfa7f7c656c64d1bb4;hb=d01fb11de5bcf91224348bf41abb6788d0af2545;hpb=8efa2df296f672505211b4360c10279d9d57be22 diff --git a/src/Makefile.am b/src/Makefile.am index 0617f6a..d5e5fac 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,23 +1,36 @@ -AM_CPPFLAGS = -DDATADIR="\"$(datadir)\"" $(RSL_CFLAGS) $(GTK_CFLAGS) $(CURL_CFLAGS) -AM_CFLAGS = -O3 -Wall -Werror --std=gnu99 -AM_LDFLAGS = -Wl,--export-dynamic -bin_PROGRAMS = aweather +SUBDIRS = gis plugins +AM_CFLAGS = -Wall -Werror -Wno-unused --std=gnu99 + +bin_PROGRAMS = aweather wsr88ddec aweather_SOURCES = main.c \ - aweather-gui.c aweather-gui.h \ - aweather-view.c aweather-view.h \ - data.c data.h \ - location.c location.h \ - plugin-radar.c plugin-radar.h \ - plugin-ridge.c plugin-ridge.h \ - plugin-example.c plugin-example.h -aweather_LDADD = $(RSL_LIBS) $(GTK_LIBS) $(CURL_LIBS) + aweather-gui.c aweather-gui.h \ + aweather-location.c aweather-location.h +aweather_CPPFLAGS = -DDATADIR="\"$(datadir)\"" $(SOUP_CFLAGS) $(GLIB_CFLAGS) $(GTK_CFLAGS) +aweather_LDADD = gis/libgis.la $(SOUP_LIBS) $(GLIB_LIBS) $(GTK_LIBS) + +wsr88ddec = wsr88ddec.c +wsr88ddec_LDFLAGS = -lbz2 +CLEANFILES = gmon.out valgrind.out +MAINTAINERCLEANFILES = Makefile.in test: all - LD_LIBRARY_PATH=/usr/local/trmm/GVBOX/lib/ \ - ./aweather + LD_LIBRARY_PATH=gis/.libs .libs/aweather -o -d 7 -s KVNX + +gdb: all + LD_LIBRARY_PATH=gis/.libs gdb .libs/aweather + +ddd: all + LD_LIBRARY_PATH=gis/.libs ddd .libs/aweather -debug: all - LD_LIBRARY_PATH=/usr/local/trmm/GVBOX/lib/ \ - gdb ./aweather +memcheck: all + LD_LIBRARY_PATH=gis/.libs \ + G_SLICE=always-malloc \ + G_DEBUG=gc-friendly,resident-modules \ + valgrind --leak-check=full \ + --leak-resolution=high \ + --num-callers=100 \ + --suppressions=gtk.suppression \ + .libs/aweather \ + 2> valgrind.out