#**************************************************************************
#
#	Copyright (c) 2001  ICP Electronics Inc.  All Rights Reserved.
#
#	FILE:
#		Makefile
#
#	Abstract:
#		Makefile for Create NAS share folder
#
#	HISTORY:
#		04/02/01	Louis Tsai - created
#
#**************************************************************************

TARGET = NAStest
LIBS = -L${TARGET_PREFIX}/usr/lib -luLinux_NAS -luLinux_Util -luLinux_Storage -luLinux_config -luLinux_PDC -luLinux_quota
#LIBS = -luLinux_Util
INCLUDES = -I${NAS_LIB_PATH}/uLinux -I${NAS_LIB_PATH}/include
CFLAGS = -O -Wall
CPP = c++

CC = $(CROSS_COMPILE)gcc
STRIP = $(CROSS_COMPILE)strip

all : $(TARGET) 

$(TARGET) : NAStest.c 
	$(CC) $(CFLAGS) NAStest.c -o $@ $(LIBS) ${INCLUDES}

clean :
	rm -f *.o core *~
	rm -f $(TARGET)
