1OBJECTS = DomainMG.o GridMG.o  PoissonMG.o
2
3include ../../CONFIG
4
5CFLAGS =  $(COMMONCFLAGS)  $(GTKCFLAGS) $(OGLCFLAGS)
6
7all: compiling
8
9%.o : %.c
10	$(CC) -c $(CFLAGS) $< -o $@
11
12compiling: $(OBJECTS)
13
14clean:
15	@$(RM) *.chk p *o gabedit *.com *.out *.log *.test test* *.cpp  *old *.ps .*swp *~
16
17#make dependance
18SRCS = $(OBJECTS:%.o=%.c)
19dep :
20	gcc -MM $(SRCS) > Dep.mk
21
22-include Dep.mk
23
24