summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore4
-rw-r--r--Makefile20
2 files changed, 24 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..5f26f4e
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+kernel-time-state
+*~
+*.kdev*
+Doxyfile
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..bb3172a
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,20 @@
+
+TARGET = kernel-time-state
+
+OBJS = $(TARGET).o
+
+ifdef DEBUG
+ CPPFLAGS += -g2
+ CPPFLAGS += -DDEBUG=$(DEBUG)
+endif
+
+# CC = gcc
+
+CPPFLAGS += -Wall
+
+all: $(TARGET)
+
+
+clean:
+ rm -f $(TARGET) *.o *~
+