lots of stuff
[assignments.git] / lab / lab8 / Makefile
1 .PHONY: all
2
3 cc=/usr/bin/gcc
4 CARGS=-Wall -Werror -Wextra -pedantic -Wno-unused-parameter -Wno-unused -Wno-format -pthread
5 SRC=trivial_shell.c -o trivial_shell
6
7 all:
8 $(CC) $(CARGS) $(SRC)
9
10 debug:
11 $(CC) $(CARGS) $(SRC) -g -O0
12