| Revision 396,
341 bytes
checked in by GrAnd, 5 years ago
(diff) |
- Fixed potential bug with screen buffer copying
- Fixed bug with 'endif' statement in case there is no 'else' section
+ Added a lot of camera functions in order to compile standalone ubasic interpreter.
|
| Line | |
|---|
| 1 | topdir=../../ |
|---|
| 2 | |
|---|
| 3 | include $(topdir)makefile.inc |
|---|
| 4 | |
|---|
| 5 | CFLAGS+=$(CTHUMB) |
|---|
| 6 | |
|---|
| 7 | OBJS = camera_functions.o tokenizer.o ubasic.o |
|---|
| 8 | |
|---|
| 9 | all: libubasic.a |
|---|
| 10 | |
|---|
| 11 | libubasic.a: $(OBJS) |
|---|
| 12 | |
|---|
| 13 | check: |
|---|
| 14 | gcc -g -Wall -DTEST -DCAMERA_a610 -o ubasic_test$(EXE) *.c |
|---|
| 15 | |
|---|
| 16 | clean: |
|---|
| 17 | rm -f $(OBJS) libubasic.a ubasic_test$(EXE) |
|---|
| 18 | |
|---|
| 19 | distclean: clean |
|---|
| 20 | rm -f $(OBJS:.o=.d) |
|---|
| 21 | |
|---|
| 22 | include $(topdir)bottom.inc |
|---|
Note: See
TracBrowser
for help on using the repository browser.