Skip to content

Commit

Permalink
unix: Rename module sources per latest naming conventions (mod*.c).
Browse files Browse the repository at this point in the history
  • Loading branch information
pfalcon committed Apr 4, 2014
1 parent cd31d82 commit c393684
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions unix/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ LDFLAGS_MOD += -lreadline
endif
ifeq ($(MICROPY_MOD_TIME),1)
CFLAGS_MOD += -DMICROPY_MOD_TIME=1
SRC_MOD += time.c
SRC_MOD += modtime.c
endif
ifeq ($(MICROPY_MOD_FFI),1)
CFLAGS_MOD += `pkg-config --cflags libffi` -DMICROPY_MOD_FFI=1
LDFLAGS_MOD += -ldl -lffi
SRC_MOD += ffi.c
SRC_MOD += modffi.c
endif


Expand All @@ -50,7 +50,7 @@ SRC_C = \
main.c \
gccollect.c \
file.c \
socket.c \
modsocket.c \
$(SRC_MOD)

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

0 comments on commit c393684

Please sign in to comment.