Skip to content

Commit 60ca628

Browse files
committed
Update bin/build_pgms.*
1 parent c30e0fc commit 60ca628

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

bin/build_pgms.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
echo "Use -m32 switch to force 32-bit build"
2-
g++ %* -std=c++17 -DNDEBUG -O2 -o bin/lists.exe src/date.cpp src/issues.cpp src/status.cpp src/sections.cpp src/mailing_info.cpp src/report_generator.cpp src/lists.cpp
2+
g++ %* -std=c++17 -DNDEBUG -O2 -o bin/lists.exe src/date.cpp src/issues.cpp src/status.cpp src/sections.cpp src/mailing_info.cpp src/report_generator.cpp src/lists.cpp src/metadata.cpp
33
g++ %* -std=c++17 -o bin/section_data.exe src/section_data.cpp
44
g++ %* -std=c++17 -o bin/toc_diff.exe src/toc_diff.cpp
5-
g++ %* -std=c++17 -DNDEBUG -O2 -o bin/list_issues.exe src/date.cpp src/issues.cpp src/status.cpp src/sections.cpp src/list_issues.cpp
5+
g++ %* -std=c++17 -DNDEBUG -O2 -o bin/list_issues.exe src/date.cpp src/issues.cpp src/status.cpp src/sections.cpp src/list_issues.cpp src/metadata.cpp
66
g++ %* -std=c++17 -DNDEBUG -O2 -o bin/set_status.exe src/set_status.cpp src/status.cpp
77

bin/build_pgms.sh

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,2 @@
11
#!/bin/sh
2-
echo '"Use -m32 switch to force 32-bit build"'
3-
${CXX:-g++} $* -std=c++17 -Wall -DNDEBUG -O2 -o bin/lists src/date.cpp src/issues.cpp src/status.cpp src/sections.cpp src/mailing_info.cpp src/report_generator.cpp src/lists.cpp
4-
${CXX:-g++} $* -std=c++17 -Wall -o bin/section_data src/section_data.cpp
5-
${CXX:-g++} $* -std=c++17 -Wall -o bin/toc_diff src/toc_diff.cpp
6-
${CXX:-g++} $* -std=c++17 -Wall -DNDEBUG -O2 -o bin/list_issues src/date.cpp src/issues.cpp src/status.cpp src/sections.cpp src/list_issues.cpp
7-
${CXX:-g++} $* -std=c++17 -Wall -DNDEBUG -O2 -o bin/set_status src/set_status.cpp src/status.cpp
2+
make -C $(dirname $0)/.. pgms

0 commit comments

Comments
 (0)