This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
tango-tfe/cache/Makefile
zhangchengwei 27d7b503c7 添加依赖库
2018-10-08 19:33:05 +08:00

25 lines
503 B
Makefile

CCC=g++
INC_PATH=-I./include -I./include/libevent2
CFLAGS=-Wall -g -fPIC $(INC_PATH)
LDFLAGS =
LIBS = -lMESA_handle_logger -lMESA_htable -lMESA_prof_load -lwiredcfg
LIBS += -lssl -lcrypto -lcurl -levent -lxml2
OBJS = tango_cache_tools.o tango_cache_client.o tango_cache_transfer.o tango_cache_xml.o cache_evbase_client.o
TARGET_A=pangu_tango_cache.a
ALL:$(TARGET_A)
$(TARGET_A):$(OBJS)
ar rs $@ $^
.cpp.o:
$(CCC) $(CFLAGS) -c $<
-include $(DEPS)
clean:
rm -rf $(OBJS) $(DEPS) $(TARGET_A)