mirror of
				https://git.1024x2.xyz/1024x2/vexnc.git
				synced 2025-11-04 03:44:32 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			162 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			162 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
LIBS := $(shell pkg-config --cflags --libs libvncserver) -lm -Ivendor/
 | 
						|
 | 
						|
vexnc: vexnc.c
 | 
						|
	$(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $^ $(LDFLAGS) $(LIBS)
 | 
						|
 | 
						|
clean:
 | 
						|
	rm vexnc
 |