dcpu16/Makefile

16 lines
241 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:
$(RM) *~ *% *.o *.orig
$(RM) dsim
reformat: $(wildcard *.c)
$(REFORMAT) $^
# vim:noet:sw=8:sts=8: