aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJohn Hawthorn <jhawthor@uvic.ca>2008-05-22 11:50:44 -0700
committerJohn Hawthorn <jhawthor@uvic.ca>2008-05-22 11:50:44 -0700
commit72573e45e04541413fa50336a56ae8a88f8f0cb8 (patch)
tree698ec95ceb0357d33b0638edd6ab814a613d86bb /Makefile
parentf6fd9b38f5e1a1088646c86ac6abde0af3475e9c (diff)
downloadmirror-meh-72573e45e04541413fa50336a56ae8a88f8f0cb8.tar.gz
mirror-meh-72573e45e04541413fa50336a56ae8a88f8f0cb8.tar.bz2
mirror-meh-72573e45e04541413fa50336a56ae8a88f8f0cb8.zip
basic png support
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1b0e819..50dc6b8 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ OBJFILES := $(SRCFILES:%.c=%.o)
DEPFILES := $(OBJFILES:%.o=%.d)
CLEANFILES := $(CLEANFILES) $(DEPFILES) $(OBJFILES) meh
CFLAGS := -O3 -Wall -g -ggdb
-LIBS := -lX11 -ljpeg
+LIBS := -lX11 -ljpeg -lpng
meh: $(OBJFILES)
$(CC) -o $@ $(OBJFILES) $(LIBS)