mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-17 20:08:12 +00:00
use $(CC) instead of gcc in Makefile
This commit is contained in:
parent
8820ae9873
commit
ad8e618ed2
4
Makefile
4
Makefile
@ -44,10 +44,10 @@ all: tests test-openssl
|
|||||||
$(CC) $(CFLAGS) -o $@ -c $<
|
$(CC) $(CFLAGS) -o $@ -c $<
|
||||||
|
|
||||||
tests: tests.o $(OBJS)
|
tests: tests.o $(OBJS)
|
||||||
gcc tests.o $(OBJS) $(TESTLIBS) -o tests
|
$(CC) tests.o $(OBJS) $(TESTLIBS) -o tests
|
||||||
|
|
||||||
test-openssl: test-openssl.o $(OBJS)
|
test-openssl: test-openssl.o $(OBJS)
|
||||||
gcc test-openssl.o $(OBJS) $(TESTSSLLIBS) -o test-openssl
|
$(CC) test-openssl.o $(OBJS) $(TESTSSLLIBS) -o test-openssl
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f *.o tests test-openssl
|
rm -f *.o tests test-openssl
|
||||||
|
Loading…
Reference in New Issue
Block a user