forked from chic_luke/figasm
Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
91c847659e | |||
4b5760f11b | |||
7612897c63 | |||
ab0064ed66 | |||
0b2953a6cd | |||
7253af98ec | |||
107036348d |
21
Makefile
21
Makefile
@ -1,10 +1,23 @@
|
||||
PREFIX ?= /usr
|
||||
FILE = figa
|
||||
EXEC = figasm
|
||||
|
||||
all:
|
||||
as -o $(FILE).o $(FILE).s
|
||||
ld -o $(FILE) $(FILE).o
|
||||
@as -o $(FILE).o $(FILE).s
|
||||
@ld -o $(EXEC) $(FILE).o
|
||||
|
||||
clean:
|
||||
@rm $(FILE).o
|
||||
@rm $(EXEC)
|
||||
|
||||
install:
|
||||
@mkdir -p $(DESTDIR)$(PREFIX)/bin
|
||||
@cp -p $(EXEC) $(DESTDIR)$(PREFIX)/bin/figasm
|
||||
|
||||
uninstall:
|
||||
@rm $(DESTDIR)$(PREFIX)/bin/figasm
|
||||
|
||||
debug:
|
||||
as -g -o $(FILE).o $(FILE).s
|
||||
ld -o $(FILE) $(FILE).o
|
||||
@as -g -o $(FILE).o $(FILE).s
|
||||
@ld -o $(EXEC) $(FILE).o
|
||||
|
||||
|
19
PKGBUILD
Normal file
19
PKGBUILD
Normal file
@ -0,0 +1,19 @@
|
||||
pkgname=figasm
|
||||
pkgver=69.420
|
||||
pkgrel=1
|
||||
pkgdesc="figasm è una semplice port in Assembly del celebre figa"
|
||||
arch=('x86_64')
|
||||
url="https://git.ignuranza.net/chic_luke/figasm.git"
|
||||
license=('SWAG')
|
||||
|
||||
makedepends=('git')
|
||||
|
||||
build() {
|
||||
git clone "${url}"
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${pkgname}"
|
||||
make
|
||||
make DESTDIR="$pkgdir" install
|
||||
}
|
Loading…
Reference in New Issue
Block a user