1
0
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:
Cenk Gündoğan 2015-08-03 09:50:25 +02:00
parent ecf0f96ce4
commit 4a21c54547
3 changed files with 3 additions and 8 deletions

View File

@ -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

View File

@ -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 */
/** @} */

View File

@ -1,3 +1 @@
MODULE = trickle
include $(RIOTBASE)/Makefile.base