figasm/Makefile

23 lines
322 B
Makefile
Raw Normal View History

PREFIX ?= /usr
2020-07-01 00:22:49 +02:00
FILE = figa
all:
@as -o $(FILE).o $(FILE).s
@ld -o $(FILE) $(FILE).o
2020-07-01 00:22:49 +02:00
2021-05-14 19:42:06 +02:00
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
2021-05-14 19:42:06 +02:00
2020-07-01 00:22:49 +02:00
debug:
@as -g -o $(FILE).o $(FILE).s
@ld -o $(FILE) $(FILE).o
2020-07-01 00:22:49 +02:00