Compare commits

..

No commits in common. "91c847659ed8af6d4bf6c038f73325f92501aa6c" and "7612897c6393aecacef49532dbbb3920f9e29628" have entirely different histories.

View File

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