8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 04:43:03 +01:00
firebird-mirror/extern/int128/absl/numeric/Makefile

12 lines
297 B
Makefile
Raw Normal View History

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