1
0
mirror of synced 2026-01-13 15:17:07 +00:00
2020-09-09 15:11:45 -07:00

40 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
### SRC_DIRS: list of source paths. Needed to generate implicit rules
### 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
SOURCES =
SOURCES += fp_test.cpp
SOURCE_LIBS =
SOURCE_LIBS += sim_lib
LINK_LIBS =
LINK_LIBS += $(COMMON_LIBS)
TARGETS =
TARGETS += fp_test
CXX_BASE_FLAGS = -Wno-unused-function -Wno-unused-but-set-variable
include ../engine.mak