Add some historic code just for the heck of it.

This commit is contained in:
Adam Ierymenko 2017-05-04 10:42:22 -07:00
commit 54c47a1e03
50 changed files with 8064 additions and 0 deletions

View file

@ -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: ;