mirror of
https://github.com/termux/termux-packages.git
synced 2025-09-30 11:12:43 +00:00
Commit af18f1dac0
("scripts: start_build: create libpthread and
librt as well") added helper libs so that packages that try to find
these libs can do so.
%ci:no-build
8 lines
347 B
Diff
8 lines
347 B
Diff
--- ./makefile~ 2017-06-09 13:15:17.000000000 +0200
|
|
+++ ./makefile 2020-09-08 13:59:03.970320442 +0200
|
|
@@ -1,2 +1,2 @@
|
|
all:
|
|
- g++ -std=c++11 main.cpp snake.cpp input.cpp snake_map.cpp -o snake -lpthread
|
|
\ No newline at end of file
|
|
+ $(CXX) $(CFLAGS) $(CXXFLAGS) $(LDFLAGS) -std=c++11 main.cpp snake.cpp input.cpp snake_map.cpp -o snake -lpthread
|