You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							25 lines
						
					
					
						
							709 B
						
					
					
				
			
		
		
	
	
							25 lines
						
					
					
						
							709 B
						
					
					
				| include ../config.mk
 | |
| 
 | |
| CFLAGS += -I.. $(CLIENT_CFLAGS)
 | |
| LDLIBS += -L.. -lwayland-client $(CLIENT_LIBS) -lrt -lm
 | |
| 
 | |
| egl_clients = gears
 | |
| cairo_clients = flower screenshot terminal image view
 | |
| 
 | |
| all : $(egl_clients) $(cairo_clients)
 | |
| 
 | |
| clean :
 | |
| 	rm -f $(egl_clients) $(cairo_clients) *.o
 | |
| 
 | |
| flower : flower.o window.o wayland-glib.o cairo-util.o
 | |
| gears : gears.o window.o wayland-glib.o cairo-util.o
 | |
| screenshot : screenshot.o wayland-glib.o cairo-util.o
 | |
| terminal : terminal.o window.o wayland-glib.o cairo-util.o
 | |
| image : image.o window.o wayland-glib.o cairo-util.o
 | |
| view : view.o window.o wayland-glib.o cairo-util.o
 | |
| 
 | |
| terminal : LDLIBS += -lutil
 | |
| view : CFLAGS += $(POPPLER_CFLAGS)
 | |
| view : LDLIBS += $(POPPLER_LIBS)
 | |
| 
 | |
| install : |