dcpu16/Makefile

16 lines
243 B
Makefile
Raw Normal View History

2019-10-19 08:31:07 +00:00
.PHONY: all clean reformat
CFLAGS=-Wall -Werror -pedantic -std=c99 -O2 -mtune=native
REFORMAT=astyle --style=linux
all: dsim
clean:
2019-10-19 12:46:18 +00:00
$(RM) *~ *% *.o *.orig
$(RM) dsim
2019-10-19 08:31:07 +00:00
reformat: $(wildcard *.c)
2019-10-19 12:46:18 +00:00
$(REFORMAT) $^
2019-10-19 08:31:07 +00:00
2019-10-19 12:46:18 +00:00
# vim:noet:sw=8:ts=8:sts=8: