Aggiunto supporto all'installazione basata #1
20
Makefile
20
Makefile
@ -1,14 +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:
|
clean:
|
||||||
rm $(FILE).o
|
@rm $(FILE).o
|
||||||
rm $(FILE)
|
@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