Skip to content

Commit 8d50346

Browse files
committed
cosmetic improvement
1 parent a09b2a6 commit 8d50346

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

Makefile

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,16 @@ app_name=main
55

66
all: build run
77

8+
# initialize meson build
9+
init:
10+
-rm -rf build/
11+
meson setup build
12+
13+
# build application
814
build:
915
meson compile -C build -v
1016

17+
# run application
1118
run:
1219
./build/serpapi-search-cpp
1320

@@ -19,7 +26,3 @@ install_linux:
1926
# tested on Apple M1 aarch64
2027
install_apple:
2128
brew install meson pkg-config curl cmake meson ninja rapidjson
22-
23-
reset:
24-
-rm -rf build/
25-
meson setup build

Rakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
require 'erb'
2-
1+
# automatic class generations
2+
#
33
task :default do
44
puts 'automatic class creation'
55
files = [

0 commit comments

Comments
 (0)