summaryrefslogtreecommitdiff
path: root/Makefile.lib
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.lib')
-rw-r--r--Makefile.lib5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.lib b/Makefile.lib
index d776318..80892cb 100644
--- a/Makefile.lib
+++ b/Makefile.lib
@@ -11,4 +11,7 @@ C_FILES := $(wildcard *.c)
CPP_FILES := $(wildcard *.cpp)
OBJS := $(C_FILES:.c=.o) $(CPP_FILES:.cpp=.o)
-all: $(OBJS) \ No newline at end of file
+libteensy-core.a: $(OBJS)
+ ar rvs $@ $(OBJS)
+
+all: libteensy-core.a \ No newline at end of file