forked from chic_luke/figasm
figa is now figasm
This commit is contained in:
parent
ab0064ed66
commit
4b5760f11b
11
Makefile
11
Makefile
@ -1,22 +1,23 @@
|
|||||||
PREFIX ?= /usr
|
PREFIX ?= /usr
|
||||||
FILE = figa
|
FILE = figa
|
||||||
|
EXEC = figasm
|
||||||
|
|
||||||
all:
|
all:
|
||||||
@as -o $(FILE).o $(FILE).s
|
@as -o $(FILE).o $(FILE).s
|
||||||
@ld -o $(FILE) $(FILE).o
|
@ld -o $(EXEC) $(FILE).o
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
@rm $(FILE).o
|
@rm $(FILE).o
|
||||||
@rm $(FILE)
|
@rm $(EXEC)
|
||||||
|
|
||||||
install:
|
install:
|
||||||
@mkdir -p $(DESTDIR)$(PREFIX)/bin
|
@mkdir -p $(DESTDIR)$(PREFIX)/bin
|
||||||
@cp -p figa $(DESTDIR)$(PREFIX)/bin/figa
|
@cp -p $(EXEC) $(DESTDIR)$(PREFIX)/bin/figasm
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
@rm $(DESTDIR)$(PREFIX)/bin/figa
|
@rm $(DESTDIR)$(PREFIX)/bin/figasm
|
||||||
|
|
||||||
debug:
|
debug:
|
||||||
@as -g -o $(FILE).o $(FILE).s
|
@as -g -o $(FILE).o $(FILE).s
|
||||||
@ld -o $(FILE) $(FILE).o
|
@ld -o $(EXEC) $(FILE).o
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user