Skip to content

Commit 629f671

Browse files
committed
Use CFLAGS in extern/decNumber/Makefile
1 parent fe82a29 commit 629f671

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extern/decNumber/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ LIBRARY=libdecFloat$(CROSS).a
22

33
$(LIBRARY): $(wildcard *.c) $(wildcard *.h) Makefile
44
$(RM) -f *.o
5-
$(CC) $(CROSS_FLAGS) -c -O3 -fPIC $(subst decCommon.c,,$(subst decBasic.c,,$(wildcard *.c)))
5+
$(CC) $(CROSS_FLAGS) $(CFLAGS) -c -O3 -fPIC $(subst decCommon.c,,$(subst decBasic.c,,$(wildcard *.c)))
66
$(AR) crs $(LIBRARY) *.o
77
$(RM) -f *.o
88

0 commit comments

Comments
 (0)