mirror of
https://github.com/badvision/lawless-legends.git
synced 2024-11-08 19:10:57 +00:00
15 lines
262 B
Makefile
15 lines
262 B
Makefile
.SUFFIXES =
|
|
PRORWTS = PRORWTS2\#4000
|
|
PROBOOT = PROBOOT\#800
|
|
|
|
all: $(PRORWTS) $(PROBOOT)
|
|
|
|
clean:
|
|
-rm $(PRORWTS) $(PROBOOT)
|
|
|
|
$(PRORWTS): prorwts2.s
|
|
acme -r prorwts2.lst -o $(PRORWTS) prorwts2.s
|
|
|
|
$(PROBOOT): proboot.s
|
|
acme -r proboot.lst -o $(PROBOOT) proboot.s
|