mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
sys/trickle: Makefile and include guard cleanup
This commit is contained in:
parent
ecf0f96ce4
commit
4a21c54547
@ -140,9 +140,6 @@ endif
|
||||
ifneq (,$(filter ng_slip,$(USEMODULE)))
|
||||
DIRS += net/link_layer/ng_slip
|
||||
endif
|
||||
ifneq (,$(filter trickle,$(USEMODULE)))
|
||||
DIRS += trickle
|
||||
endif
|
||||
ifneq (,$(filter nhdp,$(USEMODULE)))
|
||||
DIRS += net/routing/nhdp
|
||||
endif
|
||||
|
@ -22,8 +22,8 @@
|
||||
* @author Cenk Gündoğan <cnkgndgn@gmail.com>
|
||||
*/
|
||||
|
||||
#ifndef _TRICKLE_H
|
||||
#define _TRICKLE_H
|
||||
#ifndef TRICKLE_H
|
||||
#define TRICKLE_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -110,5 +110,5 @@ void trickle_callback(trickle_t *trickle);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _TRICKLE_H */
|
||||
#endif /* TRICKLE_H */
|
||||
/** @} */
|
||||
|
@ -1,3 +1 @@
|
||||
MODULE = trickle
|
||||
|
||||
include $(RIOTBASE)/Makefile.base
|
||||
|
Loading…
Reference in New Issue
Block a user