diff options
author | Mart Lubbers | 2016-08-28 17:35:54 +0200 |
---|---|---|
committer | Mart Lubbers | 2016-08-28 17:35:54 +0200 |
commit | fd0fa061c30021396571beb1cfadd0aa464825b3 (patch) | |
tree | 68073d4d12f4376ef4206510df49357eb0dfef88 /Makefile | |
parent | More timing (diff) |
linux kernel coding style, fix deprecated libraries
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ CC=gcc -CFLAGS=-O3 +CFLAGS=-O3 -Wall -Wextra -Werror -pedantic DEPS=minctest.h OBJS=example.o minctest.o @@ -10,6 +10,6 @@ example: $(OBJS) $(CC) -o $@ $^ $(CFLAGS) clean: - rm *.o example + $(RM) *.o example |