Creation of gcm_input and a first approach to a web interface
[gnucomo.git] / src / gcm_input / makefile
1 CXXFLAGS = -I/usr/include/gnome-xml -g
2
3 GCMINPUT_O = gcm_input.o gnucomo_config.o database.o message.o
4
5 gcm_input :  $(GCMINPUT_O)
6         $(CXX) -o gcm_input $(GCMINPUT_O) -lAXE -lxml -lpq++
7
8 gcm_input.o : message.h database.h
9 database.o  : database.h
10 message.o   : message.h
11
12 clean:
13         rm -f gcm_input $(GCMINPUT_O)