source: trunk/lib/ubasic/Makefile @ 515

Revision 515, 341 bytes checked in by reyalp, 5 years ago (diff)

set svn:eol-style and fix files that had mixed line endings. See http://chdk.setepontos.com/index.php/topic,2145.15.html

  • Property svn:eol-style set to LF
Line 
1topdir=../../
2
3include $(topdir)makefile.inc
4
5CFLAGS+=$(CTHUMB)
6
7OBJS = camera_functions.o tokenizer.o ubasic.o
8
9all: libubasic.a
10
11libubasic.a: $(OBJS)
12
13check:
14        gcc -g -Wall -DTEST -DCAMERA_a610 -o ubasic_test$(EXE) *.c
15
16clean:
17        rm -f $(OBJS) libubasic.a ubasic_test$(EXE)
18
19distclean: clean
20        rm -f $(OBJS:.o=.d)
21
22include $(topdir)bottom.inc
Note: See TracBrowser for help on using the repository browser.