# C/C++ compiler, linker
CC = gcc 
CXX = g++ 
LINK = $(CC) 

OPT = -O3 
DEF = -DUNIX -D__KERNEL__ -DMODULE 
WARN = -Wall
PIC = -fPIC

DEPFLAGS=-Dlinux

# add other include paths here, i.e. -I/usr/local/include
ARCH_INC =

# add other linker flags here, i.e. -L/usr/local/lib
ARCH_LDFLAGS = 

# add other libraries here, i.e. -liostream
ARCH_LIB = 
