removed wildcard from the Makefile
This commit is contained in:
parent
242d1d5c81
commit
1b5ff475e8
1 changed files with 11 additions and 4 deletions
15
Makefile
15
Makefile
|
|
@ -1,13 +1,20 @@
|
|||
NAME = codexion
|
||||
NAME := codexion
|
||||
|
||||
SRCS = $(wildcard coders/*.c)
|
||||
INCLUDES = coders/codexion.h
|
||||
SRCS := coders/coder.c\
|
||||
coders/heap.c\
|
||||
coders/initialization.c\
|
||||
coders/main.c\
|
||||
coders/monitor.c\
|
||||
coders/schedulers.c\
|
||||
coders/utils.c
|
||||
|
||||
INCLUDES := ./coders
|
||||
|
||||
OBJS = $(SRCS:.c=.o)
|
||||
|
||||
CC = cc
|
||||
# CFLAGS = -Wall -Wextra -Werror -pthread -g -fsanitize=thread
|
||||
CFLAGS = -Wall -Wextra -Werror -pthread
|
||||
CFLAGS = -Wall -Wextra -Werror -pthread -I$(INCLUDES)
|
||||
|
||||
ARGS = 6 900 200 200 200 10 60 fifo
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue