diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile | 11 | ||||
| -rw-r--r-- | src/main.c | 8 |
2 files changed, 19 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile new file mode 100644 index 0000000..22512eb --- /dev/null +++ b/src/Makefile @@ -0,0 +1,11 @@ + +EXEC=chip-8 + +$(EXEC): main.c + gcc $^ -o $@ + +clean: + - rm $(EXEC) + +.PHONY: clean + diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..cf33aba --- /dev/null +++ b/src/main.c @@ -0,0 +1,8 @@ + + + +int main(int argc, char *argv[]) +{ + + return 0; +} |
