Skip to content

Commit c393684

Browse files
committed
unix: Rename module sources per latest naming conventions (mod*.c).
1 parent cd31d82 commit c393684

4 files changed

Lines changed: 3 additions & 3 deletions

File tree

unix/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ LDFLAGS_MOD += -lreadline
2828
endif
2929
ifeq ($(MICROPY_MOD_TIME),1)
3030
CFLAGS_MOD += -DMICROPY_MOD_TIME=1
31-
SRC_MOD += time.c
31+
SRC_MOD += modtime.c
3232
endif
3333
ifeq ($(MICROPY_MOD_FFI),1)
3434
CFLAGS_MOD += `pkg-config --cflags libffi` -DMICROPY_MOD_FFI=1
3535
LDFLAGS_MOD += -ldl -lffi
36-
SRC_MOD += ffi.c
36+
SRC_MOD += modffi.c
3737
endif
3838

3939

@@ -50,7 +50,7 @@ SRC_C = \
5050
main.c \
5151
gccollect.c \
5252
file.c \
53-
socket.c \
53+
modsocket.c \
5454
$(SRC_MOD)
5555

5656
OBJ = $(PY_O) $(addprefix $(BUILD)/, $(SRC_C:.c=.o))
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)