mirror of
https://github.com/reactos/ninja.git
synced 2025-02-23 13:10:58 +00:00
16 lines
300 B
Makefile
16 lines
300 B
Makefile
CC=$(CXX)
|
|
CXXFLAGS := -Wall -g
|
|
|
|
all_i_currently_care_about: tags ninja_test
|
|
|
|
.PHONY:
|
|
tags:
|
|
etags *.cc *.h
|
|
|
|
ninja_test: LDFLAGS = -lgtest -lgtest_main -lpthread
|
|
ninja_test: ninja_test.o
|
|
ninja_test.o: ninja_test.cc ninja.h manifest_parser.h
|
|
|
|
ninja: ninja.o
|
|
ninja.o: ninja.cc ninja.h manifest_parser.h
|