aboutsummaryrefslogtreecommitdiffstats
path: root/stdtime/Makefile
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-09-13 20:51:48 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-09-13 20:51:48 +0000
commit8a8d27a2dfa1536f7273579dc7f4886bf9c4cfed (patch)
tree0e8008c721582afe7e8954a6be00bdba448be121 /stdtime/Makefile
parente1c164d7893f1d41083c35b5f5ea440df0940961 (diff)
CLeanup PBX patch and add localtime stuff for saytime (bug #168)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1506 f38db490-d61c-443f-a65b-d21fe96a405b
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
+
+