# makeconf
# generated by libs/config
CC_NAME=gcc
OTHER_OBJS=
# configuration variables for makefile

# you should change this if you don't have gcc
CC_NAME=gcc

# "G=-g" if debugging, "G=" if no debugging
G=-g

# "OPTIMIZATION=-O" if optimize, "OPTIMIZATION=" if no optimize
OPTIMIZATION=-O

# This may need to be changed depending on your compiler.  OK to leave
# blank if you don't want any warnings
#WARNINGS=-Wall

# You probably won't need to change these...

CFLAG_CONFIG='-DCONFIG=<configx.h>'
CFLAGS=$(OPTIMIZATION) $(G) $(WARNINGS) $(OTHER_CFLAGS)
CC_OBJ=$(CC_NAME) $(CFLAGS) $(CFLAG_CONFIG) -I$(LIBRARY_DIR)
CC_EXE=$(CC_NAME) -L$(LIBRARY_DIR)

# "CC=" is done to break the default compilation rules, which
# we'd like to redefine.  It shouldn't be necessary, but would
# probably help us catch the system if it tries one of its default
# rules instead of our rules.
CC=

# Our compilation rules

.c.o:
	$(CC_OBJ) -c $*.c

.c.pro:
	protos $*.c

.c.s:
	$(CC_OBJ) -S $*.c



