#### Start of system configuration section. ####

srcdir =	@srcdir@

ifeq ($(srcdir),.)
srcdir = ..
endif

VPATH :=	$(srcdir)

# Common prefix for machine-independent installed files.
prefix =	@prefix@

# Common prefix for machine-dependent installed files.
exec_prefix =	@exec_prefix@

bindir =	$(exec_prefix)/bin
libdir =	$(exec_prefix)/Sys/libs

INSTALL =	@INSTALL@
INSTALL_DATA =	@INSTALL_DATA@

CC =		@CC@

CFLAGS =	@CFLAGS@
LDFLAGS =	@LDFLAGS@

RANLIB =	@RANLIB@
AR =		ar

#### End system configuration section ####

FLAVOR_CFLAGS =	-m$(CPU) -m$(FPU) -f$(BASE)
ALL_CFLAGS =	$(CFLAGS) $(FLAVOR_CFLAGS) $(INCS) $(DEFS)

DEFS =		-DTM_GMTOFF=tm_gmtoff -DTM_ZONE=tm_zone -DNOID
INCS =		-I$(srcdir) -I$(srcdir)/../library -I$(srcdir)/../include

.c.o:
		$(CC) $(ALL_CFLAGS) -c $< -o $@

SRC =		$(wildcard $(srcdir)/*.c)

OBJ =		$(notdir $(SRC:.c=.o))

libstatic.a:	$(OBJ)
		rm -f $@
		$(AR) rc $@ $(OBJ)
		$(RANLIB) $@

clean:
		rm -rf *baserel*

clobber:	clean
		rm -f Makefile
