Created
October 21, 2013 08:54
-
-
Save gjedeer/7080715 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[master] gdr@gdr-desktop:~/Downloads/optipng-zopfli$ cat src/zopfli/makefile | |
make: | |
gcc *.c -O2 -W -Wall -Wextra -ansi -pedantic -lm -o zopfli | |
debug: | |
gcc *.c -g3 -lm -o zopfli | |
CFLAGS = -O2 -W -Wall -Wextra -ansi -pedantic -lm | |
all: libzopfli.a | |
clean: | |
-del /q libzopfli.lib blocksplitter.obj cache.obj deflate.obj gzip_container.obj hash.obj katajainen.obj lz77.obj squeeze.obj tree.obj util.obj zlib_container.obj | |
libzopfli.a: blocksplitter.o cache.o deflate.o gzip_container.o hash.o katajainen.o lz77.o squeeze.o tree.o util.o zlib_container.o | |
ar rcs $@ $? | |
ranlib $@ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment