 524ce69bcb
			
		
	
	524ce69bcb
	
	
	
		
			
			At the same time, change the library sonames for -3.0 to just -3. This is necessary since the 2.99 releases installed libraries like libgtk-3.0.so.0.9903.0, and we want to prevent the library version number from jumping back. So 3.0 will have libgtk-3.so.0.0.0.
		
			
				
	
	
		
			37 lines
		
	
	
		
			704 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			704 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| include $(top_srcdir)/Makefile.decl
 | |
| 
 | |
| if PLATFORM_WIN32
 | |
| no_undefined = -no-undefined
 | |
| endif
 | |
| 
 | |
| INCLUDES = \
 | |
| 	-I$(top_srcdir) 		\
 | |
| 	-I$(top_srcdir)/gdk		\
 | |
| 	-I$(top_builddir)/gdk		\
 | |
| 	-DGDK_DISABLE_DEPRECATED	\
 | |
| 	$(GTK_DEP_CFLAGS)
 | |
| 
 | |
| LDADDS = \
 | |
| 	$(GTK_DEP_LIBS)				\
 | |
| 	$(top_builddir)/gdk/libgdk-3.la		\
 | |
| 	$(top_builddir)/gtk/libgtk-3.la
 | |
| 
 | |
| enginedir = $(libdir)/gtk-3.0/$(GTK_BINARY_VERSION)/engines
 | |
| 
 | |
| engine_LTLIBRARIES = libpixmap.la
 | |
| 
 | |
| libpixmap_la_SOURCES = 		\
 | |
| 	pixbuf-draw.c		\
 | |
| 	pixbuf-main.c		\
 | |
| 	pixbuf-render.c		\
 | |
| 	pixbuf-rc-style.c	\
 | |
| 	pixbuf-rc-style.h	\
 | |
| 	pixbuf-style.h		\
 | |
| 	pixbuf.h
 | |
| 
 | |
| libpixmap_la_LDFLAGS =  -avoid-version -module $(no_undefined)
 | |
| libpixmap_la_LIBADD = $(LDADDS)
 | |
| 
 | |
| 
 | |
| -include $(top_srcdir)/git.mk
 |