 b3d5f148e6
			
		
	
	b3d5f148e6
	
	
	
		
			
			* examples/*/Makefile (CFLAGS): add deprecation guards. * docs/tutorial/gtk-tut.sgml, examples/*/*.c: make most examples deprecation-clean; the major offenders right now are the examples that make heavy use of completely deprecated or broken widgets: list, tree, text, pixmap, paned and progressbar. These will have to be redone from scratch. * demos/Makefile.am (INCLUDES): add -DGDK_PIXBUF_DISABLE_DEPRECATED.
		
			
				
	
	
		
			15 lines
		
	
	
		
			296 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			296 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| 
 | |
| CC = gcc
 | |
| 
 | |
| CFLAGS = -Wall			 	\
 | |
| 	-DG_DISABLE_DEPRECATED 	 	\
 | |
| 	-DGDK_DISABLE_DEPRECATED 	\
 | |
| 	-DGDK_PIXBUF_DISABLE_DEPRECATED \
 | |
| 	-DGTK_DISABLE_DEPRECATED
 | |
| 
 | |
| wheelbarrow: wheelbarrow.c 
 | |
| 	$(CC) wheelbarrow.c -o wheelbarrow $(CFLAGS) `pkg-config gtk+-2.0 --cflags --libs`
 | |
| 
 | |
| clean: 
 | |
| 	rm -f *.o wheelbarrow
 |