Adds build system for all prototypes.
This commit is contained in:
parent
a8b6ad3580
commit
11d27e0039
2 changed files with 10 additions and 0 deletions
8
prototypes/Makefile
Normal file
8
prototypes/Makefile
Normal file
|
@ -0,0 +1,8 @@
|
|||
|
||||
PROJECTS = $(shell ls --file-type | grep / | sed "s|/||")
|
||||
|
||||
all: $(PROJECTS)
|
||||
|
||||
.PHONY: $(PROJECTS)
|
||||
$(PROJECTS):
|
||||
make -C $@
|
2
prototypes/supervm/.gitignore
vendored
Normal file
2
prototypes/supervm/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
obj/*
|
||||
vm
|
Loading…
Reference in a new issue