include Makefile.define

# Ĭϳ
default:all

# Ӧļб
PATS = BaseCommand.o LinuxQueue.o

LIB_BASE_OBJS = BaseCommand.o LinuxQueue.o
LIB_BASE = libLinuxQueue.so

all: libLinuxQueue.so clear
			
# Ӧó
all:$(LIB_BASE) Makefile

$(LIB_BASE):$(PATS)
	$(CC) -shared -o $(LIB_BASE) $(LIB_BASE_OBJS) $(LIBS)

# 
clean:
	rm -rf *.o  $(LIB_BASE) $(LIB_BASE_OBJS)
clear:	
	mv libLinuxQueue.so ../../../PurenessScopeServer/Linux_Bin/	
cl:	
	rm -rf *.o 
