Merge pull request 'figa is now figasm' (#3) from alecs/figasm:master into master

Reviewed-on: #3
This commit is contained in:
chic_luke 2021-05-14 21:49:08 +02:00
commit 91c847659e
1 changed files with 6 additions and 5 deletions

View File

@ -1,22 +1,23 @@
PREFIX ?= /usr
FILE = figa
EXEC = figasm
all:
@as -o $(FILE).o $(FILE).s
@ld -o $(FILE) $(FILE).o
@ld -o $(EXEC) $(FILE).o
clean:
@rm $(FILE).o
@rm $(FILE)
@rm $(EXEC)
install:
@mkdir -p $(DESTDIR)$(PREFIX)/bin
@cp -p figa $(DESTDIR)$(PREFIX)/bin/figa
@cp -p $(EXEC) $(DESTDIR)$(PREFIX)/bin/figasm
uninstall:
@rm $(DESTDIR)$(PREFIX)/bin/figa
@rm $(DESTDIR)$(PREFIX)/bin/figasm
debug:
@as -g -o $(FILE).o $(FILE).s
@ld -o $(FILE) $(FILE).o
@ld -o $(EXEC) $(FILE).o