EightBit/lib_build.mk

13 lines
187 B
Makefile

opt: $(LIB)
debug: $(LIB)
coverage: $(LIB)
profile: $(LIB)
profiled: $(LIB)
$(LIB): $(OBJECTS)
$(AR) $(ARFLAGS) $(LIB) $(OBJECTS)
.PHONY: clean
clean:
-rm -f $(LIB) $(OBJECTS) $(PCH)