mirror of
				https://github.com/gnif/LookingGlass.git
				synced 2025-11-04 06:31:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
BINARY  = looking-glass-client
 | 
						|
CFLAGS  = -g -O3 -std=gnu99 -march=native -Wall -Werror -I./ -I../common -DDEBUG -DATOMIC_LOCKING
 | 
						|
LDFLAGS = -lrt
 | 
						|
 | 
						|
CFLAGS  += -ffast-math
 | 
						|
CFLAGS  += -fdata-sections -ffunction-sections
 | 
						|
LDFLAGS += -Wl,--gc-sections
 | 
						|
CFLAGS  += -Wfatal-errors
 | 
						|
 | 
						|
LIBS    = sdl2 SDL2_ttf gl glu libssl openssl spice-protocol fontconfig x11 libconfig
 | 
						|
 | 
						|
LIBS    += nettle hogweed
 | 
						|
CFLAGS  += -D USE_NETTLE
 | 
						|
LDFLAGS += -lgmp
 | 
						|
 | 
						|
#LIBS    += libssl openssl
 | 
						|
#CFLAGS  += -D USE_OPENSSL
 | 
						|
 | 
						|
CFLAGS  += $(shell pkg-config --cflags $(LIBS))
 | 
						|
LDFLAGS += $(shell pkg-config --libs   $(LIBS))
 | 
						|
BUILD   ?= .build
 | 
						|
BIN     ?= bin
 | 
						|
 | 
						|
CFLAGS  += -DBUILD_VERSION='"$(shell git describe --always --long --dirty --abbrev=10 --tags)"'
 | 
						|
 | 
						|
OBJS	= main.o \
 | 
						|
	  lg-renderer.o \
 | 
						|
	  spice/rsa.o \
 | 
						|
	  spice/spice.o \
 | 
						|
	  parsers/nal.o \
 | 
						|
	  decoders/null.o \
 | 
						|
	  renderers/opengl.o
 | 
						|
 | 
						|
BUILD_OBJS = $(foreach obj,$(OBJS),$(BUILD)/$(obj))
 | 
						|
 | 
						|
all: $(BIN)/$(BINARY) $(BIN)/xlib-shim.so
 | 
						|
 | 
						|
$(BIN):
 | 
						|
	mkdir -p $@
 | 
						|
 | 
						|
$(BIN)/xlib-shim.so: $(BIN)
 | 
						|
	$(CC) -fPIC $(CFLAGS) -shared -o $@ xlib-shim.c
 | 
						|
 | 
						|
$(BUILD)/%.o: %.c
 | 
						|
	@mkdir -p $(dir $@)
 | 
						|
	$(CC) -c $(CFLAGS) -o $@ $<
 | 
						|
 | 
						|
$(BIN)/$(BINARY): $(BIN) $(BUILD_OBJS)
 | 
						|
	$(CC) -o $@ $(BUILD_OBJS) $(LDFLAGS)
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -rf $(BUILD) $(BIN)
 | 
						|
 | 
						|
.PHONY: clean
 |