head	1.1;
access;
symbols;
locks; strict;
comment	@# @;


1.1
date	2009.09.16.08.18.57;	author yo2dh;	state Exp;
branches;
next	;


desc
@@


1.1
log
@Add
@
text
@Object=$(patsubst %.cpp,%.o,$(wildcard *.cpp))
Library=`pkg-config gtkmm-2.4 giomm-2.4 --cflags --libs`
Include=`pkg-config gtkmm-2.4 giomm-2.4 --cflags`
Title=swa.exe
all:$(Title)
$(Title):$(Object)
	$(CC) $(Library) -o $@@ $^
%.o:%.cpp
	$(CC) $(Include) -c -o $@@ $<
clean:
	rm -rf *.o $(Title)
rebuild:
	make clean
	make
@
