LookingGlass/client/Makefile

46 lines
1.1 KiB
Makefile
Raw Normal View History

BINARY = looking-glass-client
CFLAGS = -g -O3 -std=gnu99 -march=native -Wall -Werror -I./ -I../common -DDEBUG -DATOMIC_LOCKING
LDFLAGS = -lrt
2017-10-19 04:15:49 +00:00
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 libva libva-glx
CFLAGS += $(shell pkg-config --cflags $(LIBS))
LDFLAGS += $(shell pkg-config --libs $(LIBS))
BUILD ?= .build
BIN ?= bin
2017-10-19 04:15:49 +00:00
2017-12-10 22:23:58 +00:00
CFLAGS += -DBUILD_VERSION='"$(shell git describe --always --long --dirty --abbrev=10 --tags)"'
OBJS = main.o \
lg-renderer.o \
spice/spice.o \
2018-01-05 00:36:18 +00:00
parsers/nal.o \
decoders/null.o \
decoders/h264.o \
renderers/opengl.o
# renderers/opengl-basic.o
2017-12-02 05:39:44 +00:00
BUILD_OBJS = $(foreach obj,$(OBJS),$(BUILD)/$(obj))
all: $(BIN)/$(BINARY) $(BIN)/xlib-shim.so
$(BIN)/xlib-shim.so:
$(CC) -fPIC $(CFLAGS) -shared -o $@ xlib-shim.c
$(BUILD)/%.o: %.c
@mkdir -p $(dir $@)
$(CC) -c $(CFLAGS) -o $@ $<
2017-10-19 04:15:49 +00:00
$(BIN)/$(BINARY): $(BUILD_OBJS)
@mkdir -p $(dir $@)
$(CC) -o $@ $(BUILD_OBJS) $(LDFLAGS)
2017-10-19 04:15:49 +00:00
clean:
rm -rf $(BUILD) $(BIN)
.PHONY: clean