Add corefw.h.

This commit is contained in:
Jonathan Schleifer 2012-04-08 21:12:05 +02:00
parent 1b72ec95bf
commit effaa94ab7
2 changed files with 11 additions and 1 deletions

View file

@ -8,6 +8,7 @@ SRCS = cfwarray.c \
cfwobject.c \ cfwobject.c \
cfwstring.c cfwstring.c
INCLUDES = ${SRCS:.c=.h} INCLUDES = ${SRCS:.c=.h} \
corefw.h
include ../buildsys.mk include ../buildsys.mk

9
src/corefw.h Normal file
View file

@ -0,0 +1,9 @@
#ifndef __COREFW_H__
#define __COREFW_H__
#include "cfwclass.h"
#include "cfwobject.h"
#include "cfwstring.h"
#include "cfwarray.h"
#endif