Compare commits
3 Commits
b89ed2b3d0
...
0b2953a6cd
Author | SHA1 | Date | |
---|---|---|---|
0b2953a6cd | |||
7253af98ec | |||
107036348d |
20
Makefile
20
Makefile
@ -1,10 +1,22 @@
|
|||||||
|
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