Skip to content
Snippets Groups Projects
Commit 6e4bb2b0 authored by Michael DM Dryden's avatar Michael DM Dryden
Browse files

makefile: exclude .git folder.

parent 2428c7cd
Branches
No related merge requests found
......@@ -64,7 +64,7 @@ CSRCS = ${shell find ./src -type f -name "*.c" -print}
ASSRCS = ${shell find ./src -type f -name "*.s" -print}
# Include path located from the top-level source directory
INC_PATH = ${shell find . -type d -print}
INC_PATH = ${shell find . -not -path "./.git/*" -not -path "./.git" -type d -print}
# Library paths from the top-level source directory
LIB_PATH =
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment