# Makefile using BMake and GCC.

CC = gcc
DEBUG =
DEF =
#OPT =
OPT = -O2 -fomit-frame-pointer -funroll-loops
INCDIR = ../myinclude/
AINCDIR = /myinclude/
INC = -Igcc:os-include/include/ -I$(INCDIR)
CFLAGS = $(DEBUG) $(OPT) $(INC) $(DEF)

OBJECTS = DebugIO.o

all: $(OBJECTS)

DebugIO.o: DebugIO.c $(AINCDIR)DebugPrc.h Makefile

#$(OBJECTS): Makefile

Makefile%:

.c.o:
   $(CC) -c $(CFLAGS) $*.c

.SUFFIXES: .c .o
