mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
[main] timer.cpp -> timer.c
This commit is contained in:
parent
28cc9baf30
commit
4ecb3fa8bb
@ -1,6 +1,8 @@
|
|||||||
#ifndef EL__ECMASCRIPT_TIMER_H
|
#ifndef EL__ECMASCRIPT_TIMER_H
|
||||||
#define EL__ECMASCRIPT_TIMER_H
|
#define EL__ECMASCRIPT_TIMER_H
|
||||||
|
|
||||||
|
#include <stdbool.h>
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
@ -3,6 +3,6 @@ include $(top_builddir)/Makefile.config
|
|||||||
|
|
||||||
OBJS-$(CONFIG_INTERLINK) += interlink.o
|
OBJS-$(CONFIG_INTERLINK) += interlink.o
|
||||||
|
|
||||||
OBJS = event.o main.o module.o select.o timer.obj version.o
|
OBJS = event.o main.o module.o select.o timer.o version.o
|
||||||
|
|
||||||
include $(top_srcdir)/Makefile.lib
|
include $(top_srcdir)/Makefile.lib
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
if conf_data.get('CONFIG_INTERLINK')
|
if conf_data.get('CONFIG_INTERLINK')
|
||||||
srcs += files('interlink.c')
|
srcs += files('interlink.c')
|
||||||
endif
|
endif
|
||||||
srcs += files('event.c', 'main.c', 'module.c', 'select.c', 'timer.cpp', 'version.c')
|
srcs += files('event.c', 'main.c', 'module.c', 'select.c', 'timer.c', 'version.c')
|
||||||
|
Loading…
Reference in New Issue
Block a user