15 lines
327 B
Makefile
15 lines
327 B
Makefile
all: slabpkg.pkg
|
|
|
|
dist/slabpkg: slabpkg.c
|
|
$(CC) -o $@ $^
|
|
|
|
slabpkg.pkg: slabpkg.pkb dist/slabpkg
|
|
dist/slabpkg build slabpkg.pkb
|
|
|
|
testroot/slabpkg: dist/slabpkg slabpkg.pkg testroot/README.md
|
|
dist/slabpkg --root ./testroot install slabpkg.pkg
|
|
|
|
test: dist/slabpkg testroot/slabpkg
|
|
dist/slabpkg sum $^
|
|
testroot/slabpkg sum $^
|