Skip to content

Instantly share code, notes, and snippets.

@gjedeer
Created October 21, 2013 08:54
Show Gist options
  • Save gjedeer/7080715 to your computer and use it in GitHub Desktop.
Save gjedeer/7080715 to your computer and use it in GitHub Desktop.
[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