Skip to content

Instantly share code, notes, and snippets.

@profil
Last active March 13, 2016 13:02
Show Gist options
  • Save profil/f0d32583a41808e20822 to your computer and use it in GitHub Desktop.
Save profil/f0d32583a41808e20822 to your computer and use it in GitHub Desktop.
CC=g++
.cpp.o:
${CC} $< -o $@
ahencode: ahencode.o filter.o adaptiveHuffman.o
${CC} $< -o $@
ahdecode: ahdecode.o filter.o adaptiveHuffman.o
${CC} $< -o $@
filter: filter.o
${CC} $< -o $@
all: ahencode ahdecode
clean:
rm *.o
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment