blob: 0e50a44889f41ffbd0a4c055d4706efcd8337e54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
CXXFLAGS+=-Wall -Werror -I../include
.PHONY: all clean
all: operators
clean:
-rm operators
-rm operators.o
operators: CC=$(CXX)
operators: operators.o
operators.o: operators.cc ../include/dwu/operators Makefile
|