This commit is contained in:
fwastring 2025-10-13 10:38:50 +02:00
commit ab9a0bd4e2
183 changed files with 20701 additions and 0 deletions

View file

@ -0,0 +1,22 @@
# Name of the executable program to be built:
TARGET = timers
# Relative path to where the framework directory is located:
DIRLEVEL = ../..
# Possible LOGLEVEL values: dbg, info, warn, err, none
LOGLEVEL = dbg
# Set to 1 to link with GnuTLS, i.e. to enable SSL support.
GNUTLS = 0
# All C++ source files used by the target program
SOURCES = main.cpp
# To be able to debug the target program
CXXFLAGS += -g
# Include the HTTP support files. It will also include the base framework,
# i.e. $(DIRLEVEL)/framework/mk.inc
# The below line should be the last one in the Makefile.
include $(DIRLEVEL)/http/mk.inc