From: Sandro Santilli Date: Thu, 10 Apr 2014 14:10:03 +0000 (+0000) Subject: Encode dependency of raster objects on header files X-Git-Tag: 2.2.0rc1~1140 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f0a6de476a5a39a29f6fc62899d838e94feebdf6;p=postgis Encode dependency of raster objects on header files git-svn-id: http://svn.osgeo.org/postgis/trunk@12453 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/raster/rt_core/Makefile.in b/raster/rt_core/Makefile.in index ddebb0fb2..51e78061e 100644 --- a/raster/rt_core/Makefile.in +++ b/raster/rt_core/Makefile.in @@ -50,10 +50,13 @@ RT_LIB = librtcore.a RT_HEADERS = \ rt_serialize.h \ librtcore.h \ - librtcore_internal.h + librtcore_internal.h \ + ../raster_config.h all: $(RT_LIB) +$(RT_OBJS): $(RT_HEADERS) + clean: rm -f $(RT_OBJS) rm -f $(RT_LIB) @@ -61,5 +64,5 @@ clean: distclean: clean rm -f Makefile -librtcore.a: $(RT_OBJS) $(RT_HEADERS) +librtcore.a: $(RT_OBJS) $(AR) $(RT_LIB) $(RT_OBJS)