| Revision 33,
291 bytes
checked in by xi, 7 years ago
(diff) |
|
Add test for bug #33.
Add test for the bug with emitting extra delimiters.
|
| Line | |
|---|
| 1 | |
|---|
| 2 | ALL = emit-it complex-key-bug trailing-space-bug extra-delimiter-bug |
|---|
| 3 | |
|---|
| 4 | .PHONY: default clean |
|---|
| 5 | |
|---|
| 6 | default: $(ALL) |
|---|
| 7 | |
|---|
| 8 | clean: |
|---|
| 9 | rm -f *.o |
|---|
| 10 | rm -f $(ALL) |
|---|
| 11 | |
|---|
| 12 | %.o: %.c |
|---|
| 13 | gcc -c $< -o $@ -Wall -Wstrict-prototypes -I${HOME}/include |
|---|
| 14 | |
|---|
| 15 | $(ALL): %: %.o |
|---|
| 16 | gcc $< -o $@ -lsyck -L${HOME}/lib -Wall -Wstrict-prototypes |
|---|
Note: See
TracBrowser
for help on using the repository browser.