Skip to content

Commit

Permalink
Code-cleanup
Browse files Browse the repository at this point in the history
- Removed file heads
- Turned tabs into spaces
- Updated pproto generation
- Removed buildxml.c and XML target
  • Loading branch information
phorward committed Oct 28, 2023
1 parent 18f87b9 commit 15bf28d
Show file tree
Hide file tree
Showing 23 changed files with 7,899 additions and 9,316 deletions.
3 changes: 1 addition & 2 deletions Makefile.gnu
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ SOURCES = \
src/lex.c \
src/list.c \
src/build.c \
src/buildxml.c \
src/main.c \
src/xml.c

Expand All @@ -35,7 +34,7 @@ clean: boot_clean
-rm unicc

src/proto.h: boot_clean
lib/pproto *.c | awk "/int _parse/ { next } { print }" >$@
lib/pproto src/*.c | awk "/int _parse/ { next } { print }" >$@

make_install:
cp Makefile.gnu Makefile
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
<div align="center">
<img src="https://github.com/phorward/unicc/raw/main/unicc.svg" height="196" alt="UniCC Logo" title="UniCC logo">
<h1>LALR(1) Parser Generator</h1>
<h1>Universal LALR(1) Parser Generator</h1>
<a href="https://github.com/phorward/unicc/actions/workflows/test.yml">
<img src="https://github.com/phorward/unicc/actions/workflows/test.yml/badge.svg" alt="Badge displaying the test status" title="Test badge">
</a>
<a href="https://github.com/phorward/unicc/LICENSE">
<img src="https://img.shields.io/badge/License-MIT-green.svg" alt="Badge displaying the license" title="License badge">
</a>
<br>
The universal LALR(1) parser generator with built-in scanner generator, creating parsers in different target programming languages.
The universal LALR(1) parser generator with built-in scanner generator,<br>
creating parsers in different target programming languages.
</div>

## About
Expand Down
Loading

0 comments on commit 15bf28d

Please sign in to comment.