a4e1d715f7
Some platforms require that a specific file extension is used for executables. Append $(EXEEXT) to $(APP) definitions to accommodate this. The name EXEEXT has been chosen for consistency with automake which uses the same variable for the same purpose. Add extensions for generated files used by Windows to the 'clean' target (.obj, .lib, .pdb) and add output files to .gitignore. Tested using a cross compiler that forces a .exe suffix and verifying that all LINK messages include the correct suffix and that a second call to make does nothing (showing that the targets match the generated executables). Signed-off-by: Nick Connolly <nick.connolly@mayadata.io> Change-Id: Ief012f6294d2f94b23c8b4f9747e21a0dfb91e96 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/6494 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Mellanox Build Bot Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com>
42 lines
387 B
Plaintext
42 lines
387 B
Plaintext
*.~
|
|
*.a
|
|
*.cmd
|
|
*.d
|
|
*.dll
|
|
*.exe
|
|
*.gcda
|
|
*.gcno
|
|
*.kdev4
|
|
*.ko
|
|
*.lib
|
|
*.log
|
|
*.o
|
|
*.obj
|
|
*.pdb
|
|
*.pyc
|
|
*.so
|
|
*.so.*
|
|
*.swp
|
|
*.DS_Store
|
|
build/
|
|
ut_coverage/
|
|
tags
|
|
cscope.out
|
|
dpdk-*
|
|
CUnit-Memory-Dump.xml
|
|
include/spdk/config.h
|
|
CONFIG.local
|
|
*VC.db
|
|
.vscode
|
|
.project
|
|
.cproject
|
|
.settings
|
|
.gitreview
|
|
mk/cc.mk
|
|
mk/config.mk
|
|
mk/cc.flags.mk
|
|
PYTHON_COMMAND
|
|
test_completions.txt
|
|
timing.txt
|
|
test/common/build_config.sh
|