all: editor

editor: editor.c
	gcc editor.c -Wall -ansi -o editor `pkg-config --cflags --libs gtk+-2.0`

clean_all:
	 rm -rf editor
