Skip to content

Properly reference HeaderFile.h(pp) #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 01.w_Defects/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ AM_CFLAGS = -pthread
AM_LDFLAGS = -lm
bin_PROGRAMS = 01_w_Defects
01_w_Defects_SOURCES = \
HeaderFile.h \
$(top_srcdir)/include/HeaderFile.h \
bit_shift.c main.c \
buffer_overrun_dynamic.c memory_allocation_failure.c \
buffer_underrun_dynamic.c memory_leak.c \
Expand Down
2 changes: 1 addition & 1 deletion 03.w_Defects_Cpp/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ AM_CXXFLAGS = -pthread
AM_LDFLAGS = -lm
bin_PROGRAMS = 03_w_Defects_Cpp
03_w_Defects_Cpp_SOURCES = \
HeaderFile.hpp \
$(top_srcdir)/include/HeaderFile.hpp \
improper_error_handling.cpp main.cpp
2 changes: 1 addition & 1 deletion 04.wo_Defects_Cpp/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ AM_CXXFLAGS = -pthread
AM_LDFLAGS = -lm
bin_PROGRAMS = 04_wo_Defects_Cpp
04_wo_Defects_Cpp_SOURCES = \
HeaderFile.hpp \
$(top_srcdir)/include/HeaderFile.hpp \
improper_error_handling.cpp main.cpp