summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authortailor <tailor@blob.baaderstrasse.com>2005-07-04 18:17:42 +0000
committertailor <tailor@blob.baaderstrasse.com>2005-07-04 18:17:42 +0000
commit998b90b04d8bab2556b9fa50f09d98a4594073d5 (patch)
treec0cbd3be5599c2e39b6c77ed4a5c3634a2221d97 /src/Makefile
Tailorization of panorama
Import of the upstream sources from Repository: /home/cvs Module: panorama Revision: 2005-04-11 14:40:18 by hofmann
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
new file mode 100644
index 0000000..adcb519
--- /dev/null
+++ b/src/Makefile
@@ -0,0 +1,14 @@
+CC=gcc
+CFLAGS=-g
+LDFLAGS=-g
+
+OBJECTS=panorama.o
+
+%.o: %.c
+ $(CC) -c $(CFLAGS) $*.c
+
+panorama: $(OBJECTS)
+ $(CC) -o panorama $(OBJECTS) -lm
+
+clean:
+ rm -f panorama $(OBJECTS)