Skip to content

Commit

Permalink
did i really just notice this?
Browse files Browse the repository at this point in the history
  • Loading branch information
DuckBergen committed Mar 18, 2021
1 parent 834723d commit 20c06b2
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ CC = gcc

all:
mkdir -p build
gcc src/yes.c -Ofast -o build/yes
gcc src/true.c -O2 -o build/true
gcc src/false.c -O2 -o build/false
gcc src/touch.c -O2 -o build/touch
gcc src/whoami.c -O2 -o build/whoami
gcc src/cp.c -O2 -o build/cp
gcc src/cat.c -O2 -o build/cat
gcc src/rm.c -O2 -o build/rm
${CC} src/yes.c -Ofast -o build/yes
${CC} src/true.c -O2 -o build/true
${CC} src/false.c -O2 -o build/false
${CC} src/touch.c -O2 -o build/touch
${CC} src/whoami.c -O2 -o build/whoami
${CC} src/cp.c -O2 -o build/cp
${CC} src/cat.c -O2 -o build/cat
${CC} src/rm.c -O2 -o build/rm
clean:
rm -rf build

0 comments on commit 20c06b2

Please sign in to comment.