draw the rest of the f*cking owl

This commit is contained in:
2022-02-23 21:59:14 -06:00
parent e91bbc1ff7
commit 565abb83ef
3 changed files with 126 additions and 55 deletions

View File

@@ -2,15 +2,16 @@
CC = gcc
CFLAGS =
EXEC := syscalls bscopy
SRC := syscalls bscopy
OUT := syscalls.out bscopy.out
.PHONY: all clean
all: $(EXEC)
all: $(SRC)
%: %.c
$(CC) $(CFLAGS) -o $@ $^
$(CC) $(CFLAGS) -o $@.out $^
clean:
rm $(EXEC)
rm $(OUT)