1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-18 04:18:10 +00:00

use $(CC) instead of gcc in Makefile

This commit is contained in:
Pavol Rusnak 2014-08-11 02:04:42 +02:00
parent 8820ae9873
commit ad8e618ed2

View File

@ -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