summaryrefslogtreecommitdiffstats
path: root/tsak/Makefile
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-09-14 20:40:36 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-09-14 20:40:36 -0500
commitbab961991a5b09b37e6381048f72895eaa9286de (patch)
treee74701e7fc4638373d70d70ef36605a72d70cf59 /tsak/Makefile
parent7fb5a8dec9f5103c63d6cd40848f41e9e6565795 (diff)
downloadexperimental-bab961991a5b09b37e6381048f72895eaa9286de.tar.gz
experimental-bab961991a5b09b37e6381048f72895eaa9286de.zip
Add experimental tsak program
tsak may make its way into kdebase in the near future...stay tuned!
Diffstat (limited to 'tsak/Makefile')
-rw-r--r--tsak/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/tsak/Makefile b/tsak/Makefile
new file mode 100644
index 0000000..c234043
--- /dev/null
+++ b/tsak/Makefile
@@ -0,0 +1,15 @@
+CC=g++
+CFLAGS=-c -Wall
+LDFLAGS=
+SOURCES=main.cpp
+OBJECTS=$(SOURCES:.cpp=.o)
+EXECUTABLE=tsak
+
+all: $(SOURCES) $(EXECUTABLE)
+
+$(EXECUTABLE): $(OBJECTS)
+ $(CC) $(LDFLAGS) $(OBJECTS) -o $@
+
+.cpp.o:
+ $(CC) $(CFLAGS) $< -o $@
+