From 10d74bdeb0105c86e383de9d6ae2f2d5fd8db6c7 Mon Sep 17 00:00:00 2001 From: lloyd Date: Mon, 12 Jul 2010 22:49:21 +0000 Subject: Move gtk example to attic --- Attic/gtk/Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Attic/gtk/Makefile (limited to 'Attic/gtk/Makefile') diff --git a/Attic/gtk/Makefile b/Attic/gtk/Makefile new file mode 100644 index 000000000..10e069bb3 --- /dev/null +++ b/Attic/gtk/Makefile @@ -0,0 +1,18 @@ + +LIBS=$(shell botan-config --libs) $(shell pkg-config --libs gtk+-2.0) +IFLAGS=$(shell botan-config --cflags) $(shell pkg-config --cflags gtk+-2.0) + +CXX = g++ +CXXFLAGS = -Wall -W $(IFLAGS) + +dsa: gtk_ui.o dsa.o + $(CXX) $^ $(LIBS) -o $@ + +gtk_ui.o: gtk_ui.cpp gtk_ui.h + $(CXX) $(CXXFLAGS) -c $< -o $@ + +dsa.o: dsa.cpp gtk_ui.h + $(CXX) $(CXXFLAGS) -c $< -o $@ + +clean: + rm -f dsa *.o -- cgit v1.2.3