temp wildcard srcs

This commit is contained in:
whaffman 2025-03-05 17:44:32 +01:00
parent faeaed6e6d
commit 3597596ecb
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,5 +1,4 @@
minishell minishell
sources.mk
a.out a.out
*.d *.d
*.o *.o

2
sources.mk Normal file
View File

@ -0,0 +1,2 @@
VPATH = $(shell find $(SRC_PATH) -type d | tr '\n' ':')
SOURCES = $(shell basename -a $(shell find $(SRC_PATH) -type f -name "*.c"))