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
|
#
# Example program
#
# Makefile used to build all programs
#
# Copyright 2014-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.
#
ULFIUS_LOCATION=../src
SIMPLE_EXAMPLE_LOCATION=./simple_example
SHEEP_COUNTER_LOCATION=./sheep_counter
PROXY_EXAMPLE_LOCATION=./proxy_example
REQUEST_EXAMPLE_LOCATION=./request_example
TEST_U_MAP_LOCATION=./test_u_map
INJECTION_EXAMPLE_LOCATION=./injection_example
AUTH_EXAMPLE_LOCATION=./auth_example
STREAM_EXAMPLE_LOCATION=./stream_example
MULTIPLE_CALLBACKS_LOCATION=./multiple_callbacks_example
WEBSOCKET_EXAMPLE_LOCATION=./websocket_example
all: debug
debug:
cd $(ULFIUS_LOCATION) && $(MAKE) debug
cd $(SIMPLE_EXAMPLE_LOCATION) && $(MAKE) debug
cd $(SHEEP_COUNTER_LOCATION) && $(MAKE) debug
cd $(PROXY_EXAMPLE_LOCATION) && $(MAKE) debug
cd $(REQUEST_EXAMPLE_LOCATION) && $(MAKE) debug
cd $(INJECTION_EXAMPLE_LOCATION) && $(MAKE) debug
cd $(AUTH_EXAMPLE_LOCATION) && $(MAKE) debug
cd $(STREAM_EXAMPLE_LOCATION) && $(MAKE) debug
cd $(TEST_U_MAP_LOCATION) && $(MAKE) debug
cd $(MULTIPLE_CALLBACKS_LOCATION) && $(MAKE) debug
cd $(WEBSOCKET_EXAMPLE_LOCATION) && $(MAKE) debug
clean:
cd $(SIMPLE_EXAMPLE_LOCATION) && $(MAKE) clean
cd $(SHEEP_COUNTER_LOCATION) && $(MAKE) clean
cd $(PROXY_EXAMPLE_LOCATION) && $(MAKE) clean
cd $(REQUEST_EXAMPLE_LOCATION) && $(MAKE) clean
cd $(INJECTION_EXAMPLE_LOCATION) && $(MAKE) clean
cd $(AUTH_EXAMPLE_LOCATION) && $(MAKE) clean
cd $(STREAM_EXAMPLE_LOCATION) && $(MAKE) clean
cd $(TEST_U_MAP_LOCATION) && $(MAKE) clean
cd $(MULTIPLE_CALLBACKS_LOCATION) && $(MAKE) clean
cd $(WEBSOCKET_EXAMPLE_LOCATION) && $(MAKE) clean
|