Skip to content
Snippets Groups Projects
Commit 9499f863 authored by Taddeüs Kroes's avatar Taddeüs Kroes
Browse files

- Cheanged spaces to tabs in Makefile.

parent 0f1daf9b
No related branches found
No related tags found
No related merge requests found
PROG = philosophers
PROG = philosophers
CC = gcc
CFLAGS = -ansi -Wall -Wextra -O3 -pthread
OFILES = host.o
RM = rm -f
CC = gcc
CFLAGS = -ansi -Wall -Wextra -O3 -pthread
OFILES = host.o
RM = rm -f
$(PROG): $(OFILES)
$(CC) -o $(PROG) $(OFILES) $(CFLAGS)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment