-
Notifications
You must be signed in to change notification settings - Fork 0
hardcoded compilation flags #2
Copy link
Copy link
Open
Description
Hello,
One could want to override default compilation flags:
mman.o: mman.c mman.h
$(CC) -o mman.o -c mman.c -Wall -O3 -fomit-frame-pointer
Maybe a CFLAGS var could be added at the top of the Makefile:
CFLAGS=-Wall -O3 -fomit-frame-pointer
Then rewrite the rule:
mman.o: mman.c mman.h
$(CC) $(CFLAGS) -o mman.o -c mman.c
Original issue reported on code.google.com by julien.s...@gmail.com on 26 Feb 2015 at 8:29
Reactions are currently unavailable