Compare commits
3 Commits
b89ed2b3d0
...
0b2953a6cd
Author | SHA1 | Date | |
---|---|---|---|
0b2953a6cd | |||
7253af98ec | |||
107036348d |
20
Makefile
20
Makefile
@ -1,10 +1,22 @@
|
||||
PREFIX ?= /usr
|
||||
FILE = figa
|
||||
|
||||
all:
|
||||
as -o $(FILE).o $(FILE).s
|
||||
ld -o $(FILE) $(FILE).o
|
||||
@as -o $(FILE).o $(FILE).s
|
||||
@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:
|
||||
as -g -o $(FILE).o $(FILE).s
|
||||
ld -o $(FILE) $(FILE).o
|
||||
@as -g -o $(FILE).o $(FILE).s
|
||||
@ld -o $(FILE) $(FILE).o
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user