summaryrefslogtreecommitdiffstats
path: root/chathans/src/my_Makefile
blob: fe5a1d536e8206d068783b59bd5b8b3274bb8747 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*Copyright (c) 2008, Rajeesh K Nambiar							*
 *											*
 * Chathans is a free software; you can redistribute it and/or modify it under the terms*
 * of GNU General Public License as published by the Free Software Foundation, either	*
 * version 3 of the License, or (at your option) any later version.			*
 *											*
 * Chathans is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;*
 * without even implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.*
 * See the GNU General Public License for more details.					*
 */

all: chathans

chathans: *.c *.h
	gcc -g -DPACKAGE_DIR=\"../\" -DPACKAGE=\"Chathans\" main.c callbacks.c support.c interface.c -o $<\
			     `pkg-config --cflags --libs gtk+2.0`
clean:
	rm -rf chathans *.o