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

14 lines
273 B
Makefile

# -*- makefile -*-
# $Id$
# Include file for GNU C++ build
.PHONY: $(TARGET)
$(TARGET): $(FLIBPATH)/lib$(TARGET)$(LIBEXT)
$(FLIBPATH)/lib$(TARGET)$(LIBEXT): $(OBJS)
@echo -n Creating library $(TARGET)...
@$(AR) cru $@ $(FOBJPATH)/*$(OBJEXT)
@$(RANLIB) $@
@echo done