Statistics
| Branch: | Tag: | Revision:

root / xseg / base.mk @ d01393c6

History | View | Annotate | Download (243 Bytes)

1
# Default setup for subdirectory Makefiles.
2

    
3
CC=gcc
4
ifndef MOPTS
5
MOPTS=
6
endif
7
ifndef COPTS
8
COPTS=-O2 -g -finline-functions $(MOPTS) $(DEBUG)
9
endif
10
ifndef CSTD
11
CSTD=-std=gnu99 -pedantic
12
endif
13
INC=-I$(BASE)
14
CFLAGS=-Wall $(INC) $(COPTS) $(CSTD)
15