#
# makefile
#
# Copyright (C) 1994 Be Inc.  All Rights Reserved
#

SHELL		:= /bin/sh

#######
include $(BUILDHOME)/buildprefs/make.pre
#######

INCLUDES	+= -I$(BUILDHOME)/src/inc/os_p
CFLAGS		+= -DSACREDMEM=256000 -D_FPOS_T -DUSERMEM=2097152 -DBEOS=1

TARGET		= $(OBJ_DIR)/compress

SRCS :=  \
	compress.c

OBJS := $(SRCS_LIST_TO_OBJS)

$(TARGET):	$(OBJ_DIR) $(OBJS)
		$(LD) -o $@ $(OBJS) $(LDFLAGS)

tar:		$(TARGET)
		-cd $(dir $(TARGET)); tar cv $(notdir $(TARGET))

floppy:		$(TARGET)
		-cd $(dir $(TARGET)); bf copy dos:$(notdir $(TARGET)) $(notdir $(TARGET))

clean::
		-rm -f [a-z] bid

#######
include $(BUILDHOME)/buildprefs/make.post
#######
