mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-08-09 20:24:14 +00:00
Initial import of project to git
This commit is contained in:
13
client/Makefile
Normal file
13
client/Makefile
Normal file
@@ -0,0 +1,13 @@
|
||||
CFLAGS=-g -Og -std=gnu99 -march=native -Wall -Werror
|
||||
LDFLAGS=-lrt -lGL
|
||||
|
||||
CFLAGS+=`pkg-config --cflags sdl2`
|
||||
LDFLAGS+=`pkg-config --libs sdl2`
|
||||
|
||||
CFLAGS+=`pkg-config --cflags libssl openssl`
|
||||
LDFLAGS+=`pkg-config --libs libssl openssl`
|
||||
|
||||
CFLAGS+=`pkg-config --cflags spice-protocol`
|
||||
|
||||
all:
|
||||
gcc ${CFLAGS} -o main main.c spice.c ${LDFLAGS}
|
Reference in New Issue
Block a user