mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-08 22:06:20 +00:00
df1f47fb36
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
13 lines
187 B
Makefile
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)
|