public
Description: An implementation of markdown in C, using a PEG grammar
Clone URL: git://github.com/jgm/peg-markdown.git
Search Repo:
Proper dependencies on markdown_peg.h in Makefile.
jgm (author)
Sun May 11 22:26:23 -0700 2008
commit  cfb9ff10b041c6f85b4222fc2af479b659a63c4c
tree    5e913300c18423ee371e02a3eef5ed22d971f6af
parent  0670aafd649d8e61b46e65e23a3b9dcee49c6e66
...
9
10
11
12
 
13
14
15
16
17
18
 
19
20
21
...
9
10
11
 
12
13
14
15
16
17
 
18
19
20
21
0
@@ -9,13 +9,13 @@
0
 $(LEG):
0
   make -C $(PEGDIR)
0
 
0
-%.o : %.c
0
+%.o : %.c markdown_peg.h
0
   $(CC) -c -o $@ $<
0
 
0
 markdown : markdown.c $(OBJS)
0
   $(CC) -Wall -O3 -ansi -o $@ $(OBJS) $<
0
 
0
-markdown_parser.c : markdown_parser.leg $(LEG)
0
+markdown_parser.c : markdown_parser.leg $(LEG) markdown_peg.h
0
   $(LEG) -o $@ $<
0
 
0
 .PHONY: clean test

Comments

    No one has commented yet.