summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Kaivo <jakob@kaivo.net>2018-11-10 12:17:38 -0500
committerJakob Kaivo <jakob@kaivo.net>2018-11-10 12:17:38 -0500
commitc190a16df0e1b8573c10d8b3fa5b1d14dd0b2539 (patch)
tree7900198bcc4b08b75cc0c5f1c7fc688a932d3687
parent3041689a3dea62c396877c0063aae60f74ecb5b9 (diff)
add email address
-rw-r--r--.gitignore2
-rw-r--r--LICENSE2
-rw-r--r--Makefile3
-rw-r--r--freeonebook.c4
4 files changed, 10 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..35d3c37
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+freeonebook
+*.o
diff --git a/LICENSE b/LICENSE
index f96c0a5..f2379fb 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
MIT License
-Copyright (c) 2018 Jakob Kaivo
+Copyright (c) 2018 Jakob Kaivo <jakob@kaivo.net>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..41984be
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,3 @@
+CC=arm-linux-gnueabihf-gcc
+
+freeonebook: freeonebook.c
diff --git a/freeonebook.c b/freeonebook.c
new file mode 100644
index 0000000..50bc2c9
--- /dev/null
+++ b/freeonebook.c
@@ -0,0 +1,4 @@
+int main(int argc, char *argv[])
+{
+ return 0;
+}