mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-22 22:03:03 +01:00
12 lines
273 B
Makefile
12 lines
273 B
Makefile
LIBRARY=libdecFloat$(CROSS).a
|
|
|
|
$(LIBRARY): $(wildcard *.c) $(wildcard *.h) Makefile
|
|
$(RM) -f *.o
|
|
$(CC) $(CROSS_FLAGS) -c -O3 -fPIC $(subst decCommon.c,,$(subst decBasic.c,,$(wildcard *.c)))
|
|
$(AR) crs $(LIBRARY) *.o
|
|
$(RM) -f *.o
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
$(RM) -f *.o *.a
|