8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 03:23:04 +01:00
firebird-mirror/extern/int128/absl/numeric/Makefile
2021-09-22 13:11:49 +03:00

12 lines
297 B
Makefile

LIBRARY=libi128$(CROSS).a
$(LIBRARY): $(wildcard *.cc) $(wildcard *.h) $(wildcard internal/*.h) $(wildcard ../base/*.h) $(wildcard *.inc) Makefile
$(RM) -f *.o
$(CXX) $(CROSS_FLAGS) -I../.. -c -O3 -fPIC int128.cc
$(AR) crs $(LIBRARY) *.o
$(RM) -f *.o
.PHONY: clean
clean:
$(RM) -f *.o *.a