mirror of
https://github.com/ksherlock/marlene.git
synced 2024-12-21 07:29:49 +00:00
main -> marlene.
This commit is contained in:
parent
e82452f216
commit
246c8a8464
18
GNUmakefile
18
GNUmakefile
@ -1,5 +1,5 @@
|
||||
PROG = marlene
|
||||
OBJS = o/main.a o/vt100.a o/telnet.a o/ansi.a o/chars.a o/marinetti.a o/display.a
|
||||
OBJS = o/vt100.a o/telnet.a o/ansi.a o/chars.a o/marinetti.a o/display.a
|
||||
|
||||
CC = occ --gno
|
||||
|
||||
@ -8,18 +8,21 @@ OPTIMIZE ?= 79
|
||||
CFLAGS = -w-1 -O $(OPTIMIZE)
|
||||
ASMFLAGS =
|
||||
|
||||
$(PROG): $(OBJS)
|
||||
$(RM) o/ansi.root
|
||||
$(RM) o/chars.root
|
||||
marlene: o/marlene.a $(OBJS)
|
||||
$(CC) $(OBJS) -o $@
|
||||
|
||||
darlene: o/darlene.a $(OBJS)
|
||||
$(CC) $(OBJS) -o $@
|
||||
|
||||
|
||||
main.o: main.c
|
||||
|
||||
marlene.o: marlene.c
|
||||
darlene.o: darlene.c
|
||||
vt100.o: vt100.c CLAGS+=-r
|
||||
ansi.o: ansi.asm
|
||||
chars.o: chars.asm
|
||||
marinetti.o: marinetti.c CLAGS+=-r
|
||||
telnet.o: telnet.c CLAGS+=-r
|
||||
ansi.o: ansi.asm
|
||||
chars.o: chars.asm
|
||||
|
||||
o :
|
||||
mkdir o
|
||||
@ -29,6 +32,7 @@ o/%.a : %.c | o
|
||||
|
||||
o/%.a : %.asm | o
|
||||
$(CC) -c $(ASMFLAGS) -o $@ $^
|
||||
$(RM) o/$*.root
|
||||
|
||||
|
||||
clean:
|
||||
|
5
makefile
5
makefile
@ -1,5 +1,5 @@
|
||||
PROG = marlene
|
||||
OBJS = main.o vt100.o telnet.o ansi.o chars.o marinetti.o display.o
|
||||
OBJS = marlene.o vt100.o telnet.o ansi.o chars.o marinetti.o display.o
|
||||
|
||||
OPTIMIZE *= 79
|
||||
|
||||
@ -11,7 +11,8 @@ $(PROG): $(OBJS)
|
||||
$(CC) $(CFLAGS) $(OBJS) -o $@
|
||||
|
||||
|
||||
main.o: main.c
|
||||
marlene.o: marlene.c
|
||||
darlene.o: darlene.c
|
||||
vt100.o: vt100.c
|
||||
ansi.o: ansi.asm
|
||||
chars.o: chars.asm
|
||||
|
Loading…
Reference in New Issue
Block a user