summaryrefslogtreecommitdiff
path: root/Makefile.lib
blob: 80892cbf4f70d82fb8a017275937867fe2a7d276 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
include flags.mk

CPPFLAGS += -I.
CXXFLAGS += -std=gnu++14

C_FILES := $(wildcard *.c)
CPP_FILES := $(wildcard *.cpp)
OBJS := $(C_FILES:.c=.o) $(CPP_FILES:.cpp=.o)

C_FILES   := $(wildcard *.c)
CPP_FILES := $(wildcard *.cpp)
OBJS      := $(C_FILES:.c=.o) $(CPP_FILES:.cpp=.o)

libteensy-core.a: $(OBJS)
	ar rvs $@ $(OBJS)

all: libteensy-core.a