mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
12 lines
347 B
Makefile
12 lines
347 B
Makefile
SWIFT_SRCROOT=${CURDIR}/../..
|
|
SRCROOT=${SWIFT_SRCROOT}/..
|
|
|
|
HEADERS=${SWIFT_SRCROOT}/include/swift/Basic/PriorityQueue.h
|
|
|
|
CXXFLAGS=-Wall -std=c++17 -stdlib=libc++ -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -I${OBJROOT}/include -I${SWIFT_SRCROOT}/include
|
|
|
|
TestPriorityQueue: TestPriorityQueue.o
|
|
$(CXX) $< -o $@
|
|
|
|
TestPriorityQueue.o: ${HEADERS}
|