31 |
$(TARGET): $(COBJS) $(GENOBJS) |
$(TARGET): $(COBJS) $(GENOBJS) |
32 |
$(CC) $(CFLAGS) -o $(TARGET) $(COBJS) $(GENOBJS) $(LIBS) |
$(CC) $(CFLAGS) -o $(TARGET) $(COBJS) $(GENOBJS) $(LIBS) |
33 |
|
|
34 |
cvsgraph.o: cvsgraph.c cvsgraph.h utils.h readconf.h |
cvsgraph.o: cvsgraph.c config.h cvsgraph.h utils.h readconf.h |
35 |
utils.o: utils.c utils.h readconf.h |
utils.o: utils.c utils.h readconf.h |
36 |
|
|
37 |
y.tab.o: y.tab.c cvsgraph.h utils.h readconf.h |
y.tab.o: y.tab.c cvsgraph.h utils.h readconf.h |
38 |
lex.yy.o: lex.yy.c readconf.h utils.h |
lex.yy.o: lex.yy.c y.tab.h readconf.h utils.h |
39 |
|
|
40 |
y.tab.c y.tab.h: confy.y |
y.tab.c y.tab.h: confy.y |
41 |
$(YACC) -d confy.y |
$(YACC) -d confy.y |
45 |
|
|
46 |
clean:: |
clean:: |
47 |
$(RM) *.o $(TARGET) $(GENSRCS) y.tab.h |
$(RM) *.o $(TARGET) $(GENSRCS) y.tab.h |
48 |
|
|
49 |
|
distclean: clean |
50 |
|
$(RM) config.cache config.status config.log Makefile config.h |
51 |
|
|