EightBit/lib_build.mk
Adrian Conlon df1f47fb36 Simplify Linux build configurations.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2017-12-25 23:45:55 +00:00

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)