figa is now figasm
This commit is contained in:
parent
ab0064ed66
commit
4b5760f11b
11
Makefile
11
Makefile
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user