]> granicus.if.org Git - postgis/commitdiff
Encode dependency of raster objects on header files
authorSandro Santilli <strk@keybit.net>
Thu, 10 Apr 2014 14:10:03 +0000 (14:10 +0000)
committerSandro Santilli <strk@keybit.net>
Thu, 10 Apr 2014 14:10:03 +0000 (14:10 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@12453 b70326c6-7e19-0410-871a-916f4a2858ee

raster/rt_core/Makefile.in

index ddebb0fb25636e400138a2ea5dfe7d72eaa894bf..51e78061ee4e20299ec35ac3e0e0006751af7ec0 100644 (file)
@@ -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)