mirror of
https://github.com/ComodoSecurity/openedr/
synced 2026-06-06 15:24:33 +00:00
7 lines
179 B
Makefile
7 lines
179 B
Makefile
OBJ = test_main.o xxhash.o
|
|
|
|
%.o: %.cpp
|
|
$(CXX) -c -o $@ $< $(CPPVERFLAG) $(EXTRAARGS)
|
|
|
|
cpplinqmake: $(OBJ)
|
|
$(CXX) -o test $^ -I. -Wall -Wextra $(CPPVERFLAG) $(EXTRAARGS) $(LIBS)
|