File tree 3 files changed +9
-23
lines changed
3 files changed +9
-23
lines changed Original file line number Diff line number Diff line change 4
4
* .swp
5
5
* .swo
6
6
7
- as31
7
+ / as31
8
8
as31.1
9
9
10
- ax211
10
+ / ax211
Original file line number Diff line number Diff line change @@ -32,30 +32,18 @@ CC=gcc
32
32
33
33
OBJ =run.o lexer.o parser.o symbol.o emitter.o
34
34
35
- all : as31 TestBoot.bin ax211
35
+ all : ../../as31
36
36
37
- as31 : $(OBJ ) as31.o
38
- $(CC ) $(CFLAGS ) -o as31 $(OBJ ) as31.o
39
- chmod a+rx as31
40
- strip as31
37
+ ../../ as31 : $(OBJ ) as31.o
38
+ $(CC ) $(CFLAGS ) -o ../../ as31 $(OBJ ) as31.o
39
+ chmod a+rx ../../ as31
40
+ strip ../../ as31
41
41
42
42
as31_gtk : $(OBJ ) as31_gtk.o
43
43
$(CC ) $(CFLAGS ) -o as31_gtk $(OBJ ) as31_gtk.o ` gtk-config --libs`
44
44
chmod a+rx as31
45
45
strip as31
46
46
47
- ax211 :
48
- make -C ax211-util
49
-
50
- TestBoot.bin : TestBoot.asm as31
51
- ./as31 -Fbin TestBoot.asm
52
- # The ROM has an origin of 0x2900. Pull it out.
53
- dd if=TestBoot.bin of=tmp.bin bs=10496 skip=1 2> /dev/null
54
- # Pad it with 0xff and bring it up to 512 bytes
55
- perl -e ' print chr(0xff) for(0..510); print chr(0x00);' > TestBoot.bin
56
- dd if=tmp.bin of=TestBoot.bin conv=notrunc 2> /dev/null
57
- rm -f tmp.bin
58
-
59
47
as31_gtk.o : as31_gtk.c as31.h
60
48
$(CC ) $(CFLAGS ) ` gtk-config --cflags` -c as31_gtk.c
61
49
@@ -67,7 +55,5 @@ parser.o: parser.c as31.h
67
55
run.o : run.c as31.h
68
56
69
57
clean :
70
- rm -f as31 as31.1 as31_gtk * ~ * .o core
58
+ rm -f ../../ as31 as31.1 as31_gtk * ~ * .o core
71
59
rm -f * .lst * .hex * .tdr * .byte * .od * .srec
72
- rm -f TestBoot.bin
73
- make -C ax211-util clean
Original file line number Diff line number Diff line change 1
1
SOURCES =gpio.c sd.c main.c crc-16.c eim.c
2
2
OBJECTS=$(SOURCES:.c =.o)
3
- EXEC =ax211
3
+ EXEC =../../ ax211
4
4
MY_CFLAGS += -Wall -O0 -g
5
5
MY_LIBS +=
6
6
You can’t perform that action at this time.
0 commit comments