8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 18:43:02 +01:00
firebird-mirror/extern/decNumber/Makefile

12 lines
273 B
Makefile
Raw Permalink Normal View History

2018-02-07 18:16:57 +01:00
LIBRARY=libdecFloat$(CROSS).a
$(LIBRARY): $(wildcard *.c) $(wildcard *.h) Makefile
$(RM) -f *.o
2018-02-07 18:16:57 +01:00
$(CC) $(CROSS_FLAGS) -c -O3 -fPIC $(subst decCommon.c,,$(subst decBasic.c,,$(wildcard *.c)))
$(AR) crs $(LIBRARY) *.o
$(RM) -f *.o
2016-11-15 12:17:56 +01:00
.PHONY: clean
clean:
2018-02-07 18:16:57 +01:00
$(RM) -f *.o *.a