summaryrefslogtreecommitdiff
path: root/attic/historic/anode/libspark/Makefile
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2017-05-04 10:42:22 -0700
committerAdam Ierymenko <adam.ierymenko@gmail.com>2017-05-04 10:42:22 -0700
commit54c47a1e03b5a7446315fc2cff64fb93fd85c5b7 (patch)
tree9298a528541fe19c7de8ac086da0b6b39b319757 /attic/historic/anode/libspark/Makefile
parent6bb855873d98309cf7ae9ed117615638366e5d8b (diff)
downloadinfinitytier-54c47a1e03b5a7446315fc2cff64fb93fd85c5b7.tar.gz
infinitytier-54c47a1e03b5a7446315fc2cff64fb93fd85c5b7.zip
Add some historic code just for the heck of it.
Diffstat (limited to 'attic/historic/anode/libspark/Makefile')
-rw-r--r--attic/historic/anode/libspark/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/attic/historic/anode/libspark/Makefile b/attic/historic/anode/libspark/Makefile
new file mode 100644
index 00000000..0d3fedd8
--- /dev/null
+++ b/attic/historic/anode/libspark/Makefile
@@ -0,0 +1,16 @@
+SYSNAME:=${shell uname}
+SYSNAME!=uname
+include ../config.mk.${SYSNAME}
+
+LIBSPARK_OBJS=
+
+all: libspark
+
+libspark: $(LIBSPARK_OBJS)
+ ar rcs libspark.a $(LIBSPARK_OBJS)
+ ranlib libspark.a
+
+clean: force
+ rm -f *.a *.so *.dylib *.dll *.lib *.exe *.o
+
+force: ;