Skip to content

Commit

Permalink
Makefile whitespace consistency in extras
Browse files Browse the repository at this point in the history
  • Loading branch information
svaarala committed Nov 14, 2017
1 parent 711da95 commit e73164e
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions extras/alloc-pool/Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# For manual testing; say 'make' in extras/alloc-pool and run ./test.

CC=gcc
DEFS=
#DEFS+='-DDUK_ALLOC_POOL_DEBUG'
CC = gcc
DEFS =
#DEFS += '-DDUK_ALLOC_POOL_DEBUG'

.PHONY: test
test:
Expand Down
8 changes: 4 additions & 4 deletions extras/cbor/Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# For manual testing; say 'make' in extras/cbor.

VALGRIND=valgrind
CC=gcc
CCOPTS=-std=c99 -Wall -Wextra -O2
#CCOPTS+=-fsanitize=undefined
VALGRIND = valgrind
CC = gcc
CCOPTS = -std=c99 -Wall -Wextra -O2
#CCOPTS += -fsanitize=undefined

.PHONY: all
all: clean jsoncbor test-runs
Expand Down
2 changes: 1 addition & 1 deletion extras/console/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# For manual testing; say 'make' in extras/console and run ./test.

CC = gcc
CC = gcc

.PHONY: test
test:
Expand Down
2 changes: 1 addition & 1 deletion extras/duk-v1-compat/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# For manual testing; say 'make' in extras/duk-v1-compat and run ./test.

CC = gcc
CC = gcc

.PHONY: test
test:
Expand Down
2 changes: 1 addition & 1 deletion extras/logging/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# For manual testing; say 'make' in extras/logging and run ./test.

CC = gcc
CC = gcc

.PHONY: test
test:
Expand Down
2 changes: 1 addition & 1 deletion extras/minimal-printf/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Just for manual testing
CC = gcc
CC = gcc

.PHONY: test
test: duk_minimal_printf.c
Expand Down
2 changes: 1 addition & 1 deletion extras/module-duktape/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# For manual testing; say 'make' in extras/module-duktape and run ./test.
# There's test coverage in tests/ecmascript, so tests here are very simple.

CC = gcc
CC = gcc

.PHONY: test
test:
Expand Down
2 changes: 1 addition & 1 deletion extras/module-node/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# For manual testing; say 'make' in extras/module-node and run ./test.

CC = gcc
CC = gcc

.PHONY: test
test:
Expand Down
2 changes: 1 addition & 1 deletion extras/print-alert/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# For manual testing; say 'make' in extras/print-alert and run ./test.

CC = gcc
CC = gcc

.PHONY: test
test:
Expand Down

0 comments on commit e73164e

Please sign in to comment.