about summary refs log tree commit diff
path: root/Makefile
blob: 93ef65608cf2f95c9171b0665b387980fb5d7ece (plain) (blame)
1
2
3
4
5
6
7
8
9
10
CFLAGS=-O2 -Wall -Wno-unused-parameter -Wextra -Wwrite-strings

ALL=mlog

all: $(ALL)

clean: FRC
	rm -f $(ALL)

FRC: