server/src/common/util/Makefile
2001-01-30 20:26:06 +00:00

19 lines
351 B
Makefile

SUBDIRS =
LIBRARY = libe-util.a
BINARY =
SOURCES = $(wildcard *.c)
OBJECTS = $(SOURCES:%.c=$(BUILD_DIR)/%.o)
include $(ERESSEA)/Makefile.include
## more definitions
# library:
$(BUILD_DIR)/$(LIBRARY):: $(OBJECTS)
$(AR) $(ARFLAGS) $@ $(OBJECTS)
$(INSTALL) $@ $(PUBLISH_DIR)/
$(PUBLISH_DIR)/$(LIBRARY): $(BUILD_DIR)/$(LIBRARY)
$(INSTALL) $< $@