This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-goldedplus/GNUmakef.lib
2001-05-20 19:19:52 +00:00

12 lines
233 B
Makefile

# -*- makefile -*-
.PHONY: $(TARGET)
$(TARGET): $(FLIBPATH)/lib$(TARGET)$(LIBEXT)
$(FLIBPATH)/lib$(TARGET)$(LIBEXT): $(OBJS)
@echo -n Creating library $(TARGET)...
@$(AR) cru $@ $(FOBJPATH)/*$(OBJEXT)
@$(RANLIB) $@
@echo done