Skip to content

Commit

Permalink
initial check-in of smartos-live compatible makefile & manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnSonnenschein committed Jan 31, 2012
1 parent 506b310 commit d3442f8
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Makefile
@@ -0,0 +1,23 @@
ROOT=$(PWD)

ifeq ($(DESTDIR),)
DESTDIR=$(ROOT)
endif

world all:
@cd virtio; gmake
@cd virtio_blk; gmake

install:
@cp virtio/virtio $(DESTDIR)/kernel/misc/amd64/
@cp virtio_blk/vioblk $(DESTDIR)/kernel/drv/amd64/


manifest:
cp manifest $(DESTDIR)/$(DESTNAME)

.PHONY: manifest

clean:
@cd virtio; gmake clean
@cd virtio_blk; gmake clean
7 changes: 7 additions & 0 deletions manifest
@@ -0,0 +1,7 @@
d kernel 0755 root sys
d kernel/misc 0755 root sys
d kernel/misc/amd64 0755 root sys
f kernel/misc/amd64/virtio 0755 root sys
d kernel/drv 0755 root sys
d kernel/drv/amd64 0755 root sys
f kernel/drv/amd64/vioblk 0755 root sys

0 comments on commit d3442f8

Please sign in to comment.