Skip to content

Commit

Permalink
More verbose GCC output
Browse files Browse the repository at this point in the history
  • Loading branch information
happysmash27 committed Oct 17, 2021
1 parent bd3064a commit 8646a9d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
all: bin2txt txt2bin NOTify dec2txt

bin2txt: bin2txt.c
gcc bin2txt.c -o bin2txt
gcc bin2txt.c -Wall -o bin2txt

txt2bin: txt2bin.c
gcc txt2bin.c -o txt2bin
gcc txt2bin.c -Wall -o txt2bin

NOTify: NOTify.c
gcc NOTify.c -o NOTify
gcc NOTify.c -Wall -o NOTify

dec2txt: dec2txt.c
gcc dec2txt.c -o dec2txt
gcc dec2txt.c -Wall -o dec2txt

clean:
rm -f bin2txt txt2bin NOTify

0 comments on commit 8646a9d

Please sign in to comment.