File tree Expand file tree Collapse file tree 3 files changed +30
-2
lines changed
Expand file tree Collapse file tree 3 files changed +30
-2
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "configurations" : [
3+ {
4+ "name" : " Mac" ,
5+ "includePath" : [
6+ " ${workspaceFolder}/**"
7+ ],
8+ "defines" : [],
9+ "macFrameworkPath" : [
10+ " /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks"
11+ ],
12+ "compilerPath" : " /usr/bin/clang" ,
13+ "cStandard" : " c11" ,
14+ "intelliSenseMode" : " clang-x64"
15+ }
16+ ],
17+ "version" : 4
18+ }
Original file line number Diff line number Diff line change @@ -23,6 +23,11 @@ bindir = @bindir@
2323srcdir = @srcdir@
2424VPATH = @srcdir@
2525
26+ # Terminal colors
27+ RED =` tput setaf 1 `
28+ GREEN =` tput setaf 2 `
29+ RESET =` tput sgr0 `
30+
2631.PHONY : all clean seedtool check
2732all clean seedtool check :
2833 cd src && $(MAKE ) $@
@@ -72,12 +77,12 @@ distcheck: $(tarball)
7277 cd $(distdir ) && $(MAKE ) DESTDIR=$$ {PWD}/_inst uninstall
7378 @remaining=" ` find $( distdir) /_inst -type f | wc -l` " ; \
7479 if test " $$ {remaining}" -ne 0; then \
75- echo " *** $$ {remaining} file(s) remaining in stage directory!" ; \
80+ echo " $( RED ) *** $$ {remaining} file(s) remaining in stage directory!$( RESET ) " ; \
7681 exit 1; \
7782 fi
7883 cd $(distdir ) && $(MAKE ) clean
7984 rm -rf $(distdir )
80- @echo " *** Package $( tarball) is ready for distribution."
85+ @echo " $( GREEN ) *** Package $( tarball) is ready for distribution.$( RESET ) "
8186
8287.PHONY : FORCE
8388FORCE :
Original file line number Diff line number Diff line change @@ -21,6 +21,11 @@ bindir = @bindir@
2121srcdir = @srcdir@
2222VPATH = @srcdir@
2323
24+ # Terminal colors
25+ RED =` tput setaf 1 `
26+ GREEN =` tput setaf 2 `
27+ RESET =` tput sgr0 `
28+
2429COMPILER = g++
2530CFLAGS = --debug -O0
2631CXXFLAGS = -std=c++17 -stdlib=libc++ --debug -O0
You can’t perform that action at this time.
0 commit comments