Compare commits
No commits in common. "91c847659ed8af6d4bf6c038f73325f92501aa6c" and "7612897c6393aecacef49532dbbb3920f9e29628" have entirely different histories.
91c847659e
...
7612897c63
11
Makefile
11
Makefile
@ -1,23 +1,22 @@
|
|||||||
PREFIX ?= /usr
|
PREFIX ?= /usr
|
||||||
FILE = figa
|
FILE = figa
|
||||||
EXEC = figasm
|
|
||||||
|
|
||||||
all:
|
all:
|
||||||
@as -o $(FILE).o $(FILE).s
|
@as -o $(FILE).o $(FILE).s
|
||||||
@ld -o $(EXEC) $(FILE).o
|
@ld -o $(FILE) $(FILE).o
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
@rm $(FILE).o
|
@rm $(FILE).o
|
||||||
@rm $(EXEC)
|
@rm $(FILE)
|
||||||
|
|
||||||
install:
|
install:
|
||||||
@mkdir -p $(DESTDIR)$(PREFIX)/bin
|
@mkdir -p $(DESTDIR)$(PREFIX)/bin
|
||||||
@cp -p $(EXEC) $(DESTDIR)$(PREFIX)/bin/figasm
|
@cp -p figa $(DESTDIR)$(PREFIX)/bin/figa
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
@rm $(DESTDIR)$(PREFIX)/bin/figasm
|
@rm $(DESTDIR)$(PREFIX)/bin/figa
|
||||||
|
|
||||||
debug:
|
debug:
|
||||||
@as -g -o $(FILE).o $(FILE).s
|
@as -g -o $(FILE).o $(FILE).s
|
||||||
@ld -o $(EXEC) $(FILE).o
|
@ld -o $(FILE) $(FILE).o
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user