X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=src%2FMakefile;h=d3fbf06e3f0bd456bdbcf6415c3c23df64a66230;hb=5292406311d31682a850baf059cab01a6f0262b2;hp=f9ea8a63e687c617c59d7c30005c3ab83e5ae7fc;hpb=199d247c0c2155c1c8fca97fcc6087efdd29e482;p=rodin%2Fchimara.git diff --git a/src/Makefile b/src/Makefile index f9ea8a6..d3fbf06 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,18 +1,34 @@ -PKG_CONFIG = gtk+-2.0 +PKG_CONFIG = gtk+-2.0 gthread-2.0 SOURCES = main.c \ callbacks.c callbacks.h \ error.c error.h \ stream.c stream.h \ window.c window.h \ glk.c glk.h \ - model.c + gestalt.c \ + fileref.c fileref.h \ + case.c \ + strio.c \ + event.c event.h \ + input.c input.h \ + style.c \ + abort.c abort.h \ + first.c OBJECTS = main.o \ callbacks.o \ error.o \ stream.o \ window.o \ glk.o \ - model.o + gestalt.o \ + fileref.o \ + case.o \ + strio.o \ + event.o \ + input.o \ + style.o \ + abort.o \ + first.o CFLAGS = -g -Wall -O0 -export-dynamic `pkg-config --cflags ${PKG_CONFIG}` LIBS = -export-dynamic `pkg-config --libs ${PKG_CONFIG}` @@ -24,3 +40,6 @@ gargoyle-gtk: ${OBJECTS} gargoyle-gtk.ui: gargoyle-gtk.glade gtk-builder-convert gargoyle-gtk.glade gargoyle-gtk.ui + +clean: + ${RM} -f ${OBJECTS} gargoyle-gtk gargoyle-gtk.ui