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