Skip to content

Commit

Permalink
Split parsing across two files parse.c and the new expression.c
Browse files Browse the repository at this point in the history
git-svn-id: http://picoc.googlecode.com/svn/trunk@170 21eae674-98b7-11dd-bd71-f92a316d2d60
  • Loading branch information
zik.saleeba committed Mar 8, 2009
1 parent 679e235 commit dc04ba8
Show file tree
Hide file tree
Showing 6 changed files with 632 additions and 630 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ CFLAGS=-Wall -g
LIBS=-lm

TARGET = picoc
SRCS = picoc.c table.c lex.c parse.c heap.c type.c variable.c clibrary.c platform_library.c platform_support.c
SRCS = picoc.c table.c lex.c parse.c expression.c heap.c type.c variable.c clibrary.c platform_library.c platform_support.c
OBJS := $(SRCS:%.c=%.o)

all: depend $(TARGET)
Expand All @@ -18,7 +18,7 @@ clean:
rm -f $(TARGET) $(OBJS) *~

count:
wc picoc.h picoc.c table.c lex.c parse.c heap.c type.c variable.c clibrary.c
wc picoc.h picoc.c table.c lex.c parse.c expression.c heap.c type.c variable.c clibrary.c

depend:
$(CC) -MM $(SRCS) >.depend
Expand Down
1 change: 1 addition & 0 deletions TODO
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Implement:
* casts
* enum
* fix #include
* char access/char array access/char * access

Improvements:
* #define with arguments
Expand Down
Loading

0 comments on commit dc04ba8

Please sign in to comment.