mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-06-21 22:37:58 +00:00
Makefile: Output to explicit target
Don't depend on the C compiler's default output file name and path. Make knows what it wants to build and where it should go, and this may not always align with the C compiler default, so tell the C compilter to output to the Make target explicitly.
This commit is contained in:
parent
521dbc67da
commit
8df5de42e2
|
@ -198,7 +198,7 @@ libmbedcrypto.dll: $(OBJS_CRYPTO)
|
||||||
|
|
||||||
.c.o:
|
.c.o:
|
||||||
echo " CC $<"
|
echo " CC $<"
|
||||||
$(CC) $(LOCAL_CFLAGS) $(CFLAGS) -c $<
|
$(CC) $(LOCAL_CFLAGS) $(CFLAGS) -c $< -o $@
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
ifndef WINDOWS
|
ifndef WINDOWS
|
||||||
|
|
Loading…
Reference in a new issue