#
# This is Makefile for shadow functions.
#

include ../Makeconfig

include ../Makerules


LIB:=../$(LIB)
LIBALIAS:=../$(LIBALIAS)

JUMP_DIR:=../jump/$(SHLIB)
JUMP_LIB=libc

ifndef OPTFLAGS
OPTFLAGS= -O6 -fomit-frame-pointer
endif

CFLAGS = $(WFLAGS) $(OPTFLAGS) $(INC) $(XCFLAGS)

DIRS:=

SRCS = shadow-comp.c
ASMS= $(SRCS:.c=.s)
OBJS= $(SRCS:.c=.o)
 
all: lib

include ../Maketargets  
