1
0
Fork 0
This commit is contained in:
dtb 2023-12-15 21:29:27 -07:00
parent 18e795f5cc
commit 1dc5fca037
1 changed files with 0 additions and 5 deletions

View File

@ -1,12 +1,7 @@
all: lowercase uppercase
clean:
rm -f lowercase uppercase
sane: all
lowercase: lowercase.c
$(CC) -DLOWERCASE -o lowercase lowercase.c
uppercase: lowercase.c
$(CC) -DUPPERCASE -o uppercase lowercase.c
.PHONY: all clean sane