forked from chic_luke/figasm
Compare commits
No commits in common. "7253af98ec1a0f4f2ba26b2ac129ad085cd34592" and "b89ed2b3d086141e3f04ad305f2290b0b85d3cbf" have entirely different histories.
7253af98ec
...
b89ed2b3d0
20
Makefile
20
Makefile
@ -1,22 +1,10 @@
|
|||||||
PREFIX ?= /usr
|
|
||||||
FILE = figa
|
FILE = figa
|
||||||
|
|
||||||
all:
|
all:
|
||||||
@as -o $(FILE).o $(FILE).s
|
as -o $(FILE).o $(FILE).s
|
||||||
@ld -o $(FILE) $(FILE).o
|
ld -o $(FILE) $(FILE).o
|
||||||
|
|
||||||
clean:
|
|
||||||
@rm $(FILE).o
|
|
||||||
@rm $(FILE)
|
|
||||||
|
|
||||||
install:
|
|
||||||
@mkdir -p $(DESTDIR)$(PREFIX)/bin
|
|
||||||
@cp -p figa $(DESTDIR)$(PREFIX)/bin/figa
|
|
||||||
|
|
||||||
uninstall:
|
|
||||||
@rm $(DESTDIR)$(PREFIX)/bin/figa
|
|
||||||
|
|
||||||
debug:
|
debug:
|
||||||
@as -g -o $(FILE).o $(FILE).s
|
as -g -o $(FILE).o $(FILE).s
|
||||||
@ld -o $(FILE) $(FILE).o
|
ld -o $(FILE) $(FILE).o
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user