Skip to content

Commit a80e975

Browse files
committed
fix port.hpp not being included
1 parent 2d514d6 commit a80e975

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ IS_LIBRARY:=1
2828
# Be sure that your header files are in the include directory inside of a folder with the
2929
# same name as what you set LIBNAME to below.
3030
LIBNAME:=hardware
31-
VERSION:=0.4.0
31+
VERSION:=0.4.1
3232
# EXCLUDE_SRC_FROM_LIB= $(SRCDIR)/unpublishedfile.c
3333
# this line excludes opcontrol.c and similar files
3434
EXCLUDE_SRC_FROM_LIB+=$(foreach file, $(SRCDIR)/main,$(foreach cext,$(CEXTS),$(file).$(cext)) $(foreach cxxext,$(CXXEXTS),$(file).$(cxxext)))
3535

3636
# files that get distributed to every user (beyond your source archive) - add
3737
# whatever files you want here. This line is configured to add all header files
3838
# that are in the directory include/LIBNAME
39-
TEMPLATE_FILES=$(INCDIR)/$(LIBNAME)/Encoder/*.hpp $(INCDIR)/$(LIBNAME)/IMU/*.hpp $(INCDIR)/$(LIBNAME)/Motor/*.hpp
39+
TEMPLATE_FILES=$(INCDIR)/$(LIBNAME)/Port.hpp $(INCDIR)/$(LIBNAME)/Encoder/*.hpp $(INCDIR)/$(LIBNAME)/IMU/*.hpp $(INCDIR)/$(LIBNAME)/Motor/*.hpp
4040

4141
.DEFAULT_GOAL=quick
4242

0 commit comments

Comments
 (0)