1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
#
# Example program
#
# Makefile used to build the software
#
# Copyright 2015-2022 Nicolas Mora <mail@babelouest.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the MIT License
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
CC=gcc
ULFIUS_LOCATION=../../src
ULFIUS_INCLUDE=../../include
EXAMPLE_INCLUDE=../include
CFLAGS+=-c -Wall -I$(ULFIUS_INCLUDE) -I$(EXAMPLE_INCLUDE) -D_REENTRANT $(ADDITIONALFLAGS) $(CPPFLAGS)
LIBS=-lc -lgnutls -lulfius -lorcania -L$(ULFIUS_LOCATION)
ifndef YDERFLAG
LIBS+= -lyder
endif
all: auth_client auth_server
clean:
rm -f *.o auth_client auth_server
debug: ADDITIONALFLAGS=-DDEBUG -g -O0
debug: auth_client auth_server
../../src/libulfius.so:
cd $(ULFIUS_LOCATION) && $(MAKE) debug JANSSONFLAG=1 WEBSOCKETFLAG=1
auth_client.o: auth_client.c ../../src/libulfius.so
$(CC) $(CFLAGS) auth_client.c -DDEBUG -g -O0
auth_client: auth_client.o
$(CC) -o auth_client auth_client.o $(LIBS)
test_auth_client: auth_client
LD_LIBRARY_PATH=$(ULFIUS_LOCATION):${LD_LIBRARY_PATH} ./auth_client
auth_server.o: auth_server.c ../../src/libulfius.so
$(CC) $(CFLAGS) auth_server.c -DDEBUG -g -O0
auth_server: auth_server.o
$(CC) -o auth_server auth_server.o $(LIBS)
test_auth_server: auth_server
LD_LIBRARY_PATH=$(ULFIUS_LOCATION):${LD_LIBRARY_PATH} ./auth_server
|