server/src/common/util/Makefile

20 lines
351 B
Makefile
Raw Normal View History

2001-01-25 10:37:55 +01:00
SUBDIRS =
LIBRARY = libe-util.a
BINARY =
SOURCES = $(wildcard *.c)
OBJECTS = $(SOURCES:%.c=$(BUILD_DIR)/%.o)
2001-01-26 17:19:41 +01:00
include $(ERESSEA)/Makefile.include
2001-01-25 10:37:55 +01:00
## more definitions
# library:
$(BUILD_DIR)/$(LIBRARY):: $(OBJECTS)
$(AR) $(ARFLAGS) $@ $(OBJECTS)
$(INSTALL) $@ $(PUBLISH_DIR)/
$(PUBLISH_DIR)/$(LIBRARY): $(BUILD_DIR)/$(LIBRARY)
$(INSTALL) $< $@