mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-22 21:23:04 +01:00
8 lines
210 B
Makefile
8 lines
210 B
Makefile
|
LIBRARY=libdecFloat.a
|
||
|
|
||
|
$(LIBRARY): $(wildcard *.c) $(wildcard *.h) Makefile
|
||
|
$(RM) -f *.o
|
||
|
$(CC) -c -O3 -fPIC $(subst decCommon.c,,$(subst decBasic.c,,$(wildcard *.c)))
|
||
|
$(AR) crs $(LIBRARY) *.o
|
||
|
$(RM) -f *.o
|