1
0
mirror of synced 2026-01-28 20:20:43 +00:00
Files
andrastantos.cray-sim/simulator/httpd/Makefile
2020-09-09 15:11:45 -07:00

41 lines
1.2 KiB
Makefile

#################################################################################
### MODE: determines what compiler flags to use
### SYSTEM: determines the intermediate and final file directory names (for now)
### DEFINES: list of predefined macros to pass to the compiler
### INC_DIRS: list of include paths to pass to the compiler
### DEP_INC_DIRS: list of include paths to search for dependencies in
### LIB_DIRS: list of library paths to pass to the linker
### TARGET_TYPE: determines whether to build executables or libraries
### SOURCES: list of source (c++) files
### SOURCE_LIBS: list of locally built libs (they are included as a dependency)
### LINK_LIBS: list of libraries to link againsg on top of SOURCE_LIBS
### TARGETS: list of target final targets (library names or executable files)
ifndef MODE
MODE=release
#MODE=debug
endif
include ../common.mak
#TARGET_TYPE = EXECUTABLE
TARGET_TYPE = LIBRARY
SOURCES =
SOURCES += connection.cpp
SOURCES += connection_manager.cpp
SOURCES += mime_types.cpp
SOURCES += reply.cpp
SOURCES += request_handler.cpp
SOURCES += request_parser.cpp
SOURCES += server.cpp
SOURCE_LIBS =
LINK_LIBS =
TARGETS =
TARGETS += httpd
include ../engine.mak