aboutsummaryrefslogtreecommitdiffstats
path: root/stdtime/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'stdtime/Makefile')
-rwxr-xr-xstdtime/Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/stdtime/Makefile b/stdtime/Makefile
new file mode 100755
index 000000000..fede0651e
--- /dev/null
+++ b/stdtime/Makefile
@@ -0,0 +1,19 @@
+
+CC=gcc
+#CFLAGS=-Wall
+INCLUDE=-I../include
+
+all: localtime.o
+
+clean::
+ rm -f localtime.o test
+
+depend::
+ @echo "Nothing to do for depend"
+
+test: test.c
+ ${CC} ${CFLAGS} -o test test.c
+
+localtime.o: localtime.c
+
+