Skip to content

Commit aae62f9

Browse files
author
xobs
committed
add makefiles, update gitignore to allow src/(ax211|as31)
1 parent 2b147d7 commit aae62f9

File tree

3 files changed

+9
-23
lines changed

3 files changed

+9
-23
lines changed

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*.swp
55
*.swo
66

7-
as31
7+
/as31
88
as31.1
99

10-
ax211
10+
/ax211

src/as31/Makefile

+6-20
Original file line numberDiff line numberDiff line change
@@ -32,30 +32,18 @@ CC=gcc
3232

3333
OBJ=run.o lexer.o parser.o symbol.o emitter.o
3434

35-
all: as31 TestBoot.bin ax211
35+
all: ../../as31
3636

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
4141

4242
as31_gtk: $(OBJ) as31_gtk.o
4343
$(CC) $(CFLAGS) -o as31_gtk $(OBJ) as31_gtk.o `gtk-config --libs`
4444
chmod a+rx as31
4545
strip as31
4646

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-
5947
as31_gtk.o: as31_gtk.c as31.h
6048
$(CC) $(CFLAGS) `gtk-config --cflags` -c as31_gtk.c
6149

@@ -67,7 +55,5 @@ parser.o: parser.c as31.h
6755
run.o: run.c as31.h
6856

6957
clean:
70-
rm -f as31 as31.1 as31_gtk *~ *.o core
58+
rm -f ../../as31 as31.1 as31_gtk *~ *.o core
7159
rm -f *.lst *.hex *.tdr *.byte *.od *.srec
72-
rm -f TestBoot.bin
73-
make -C ax211-util clean

src/ax211/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
SOURCES=gpio.c sd.c main.c crc-16.c eim.c
22
OBJECTS=$(SOURCES:.c=.o)
3-
EXEC=ax211
3+
EXEC=../../ax211
44
MY_CFLAGS += -Wall -O0 -g
55
MY_LIBS +=
66

0 commit comments

Comments
 (0)