Skip to content

Commit

Permalink
rename parser to decoder
Browse files Browse the repository at this point in the history
  • Loading branch information
xbarin02 committed Dec 4, 2020
1 parent 15a68c0 commit 4adfa42
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
parser
decoder
encoder
*.jpg
*.jpeg
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CFLAGS+=-std=c99 -pedantic -Wall -Wextra -march=native -O3 -D_XOPEN_SOURCE -D_GNU_SOURCE -g
LDFLAGS+=-rdynamic
LDLIBS+=-lm
BINS=parser encoder
BINS=decoder encoder

CFLAGS+=$(EXTRA_CFLAGS)
LDFLAGS+=$(EXTRA_LDFLAGS)
Expand All @@ -18,6 +18,6 @@ clean:
distclean: clean
$(RM) -- *.gcda

parser: parser.o common.o io.o huffman.o coeffs.o imgproc.o frame.o
decoder: decoder.o common.o io.o huffman.o coeffs.o imgproc.o frame.o

encoder: encoder.o common.o io.o huffman.o coeffs.o imgproc.o frame.o
File renamed without changes.

0 comments on commit 4adfa42

Please sign in to comment.