# (C) 2002 The UbixOS Project
#
# $Id$
# Include Global 'Source' Options
include ../../../Makefile.inc
include ../../Makefile.inc
# Objects
OBJS = api_lib.o api_msg.o err.o sockets.o tcpip.o
all: $(OBJS)
# Compile Types
.cc.o:
$(CXX) ${CFLAGS} -fno-exceptions -DNOBOOL -Wall -fomit-frame-pointer -O -I../../include -c -o $@ $<
.cc.s:
$(CXX) ${CFLAGS} -fno-exceptions -DNOBOOL -Wall -fomit-frame-pointer -O -I../../include -S -o $@ $<
.c.o:
$(CC) ${CFLAGS} -Wall -fomit-frame-pointer -O -I../../include -c -o $@ $<
.c.s:
$(CC) ${CFLAGS} -Wall -fomit-frame-pointer -O -I../../include -S -o $@ $<
.S.o:
$(CC) ${CFLAGS} -Wall -fomit-frame-pointer -c -o $@ $<
# Clean up the junk
clean:
$(REMOVE) $(OBJS)