
SRC = planner_widget.c xbus.c xmenu.c xmsg.c xpeople.c \
	xapps.c xpbp.c xtodos.c edit_person.c notes.c edit_app.c \
	pinfomanconfig.c xlink.c about_box.c xday_title.c timer.c

CC = gcc
GTK = `gtk-config --cflags`
OPTIMIZE = -g -gstabs+
CFLAGS = $(OPTIMIZE) -Wall -pipe

all:	xpinfoman

.c.o:
	$(CC) $(CFLAGS) $(GTK) -c $<

OBJ = $(SRC:.c=.o)

xpinfoman: $(OBJ)

clean:
	rm -f *.o

cleaner:
	rm -f *.o *.c~
