#
# This is Makefile of dirent for Linux
#

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)
INC= -I.

DIRS:=

SRCS = alphasort.c closedir.c opendir.c rewinddir.c scandir.c \
	seekdir.c telldir.c
ASMS= $(SRCS:.c=.s)
OBJS= $(SRCS:.c=.o)

include ../Maketargets
