Skip to content

Commit

Permalink
Merge pull request #189 from jwillemsen/jwi-ccflags
Browse files Browse the repository at this point in the history
Move ccflags to compiler part
  • Loading branch information
jwillemsen authored Sep 19, 2023
2 parents 2009412 + 6d8b1cf commit 37014b8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion templates/bmake.mpd
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
CC = <%cc%>
OPTIMIZE_CFLAGS = <%optimize_flags%>
DEBUG_CFLAGS = <%debug_flags%>
CC_CFLAGS = <%ccflags%>
WARN_FLAGS = <%warn_flags%>
BINARY_FLAGS = <%binary_flags%>
THREAD_FLAGS = <%thr_flags%>
Expand Down Expand Up @@ -81,7 +82,7 @@ RC = <%rc%>
DLLFLAGS = <%dllflags%>
LIBFLAGS = <%libflags%>
EXEFLAGS = <%exeflags%>
CCFLAGS = <%ccflags%><%if(type_is_binary)%> $(BINARY_FLAGS)<%endif%><%if(compile_flags)%> <%compile_flags%><%endif%>
CCFLAGS = $(CC_CFLAGS)<%if(type_is_binary)%> $(BINARY_FLAGS)<%endif%><%if(compile_flags)%> <%compile_flags%><%endif%>

<%if(use_vcl)%>
STARTUP_LETTER = <%if(exename)%>w<%else%><%startup_letter%><%endif%>
Expand Down

0 comments on commit 37014b8

Please sign in to comment.