diff options
Diffstat (limited to 'src/usr/example/makefile')
-rw-r--r-- | src/usr/example/makefile | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/usr/example/makefile b/src/usr/example/makefile index 73642a088..16df1e37d 100644 --- a/src/usr/example/makefile +++ b/src/usr/example/makefile @@ -1,16 +1,7 @@ ROOTPATH = ../../.. -OBJDIR = ${ROOTPATH}/obj/modules/example -IMGDIR = ${ROOTPATH}/img -EXTRACOMMONFLAGS = -fPIC +MODULE = example OBJS = example.o -OBJECTS = $(addprefix ${OBJDIR}/, ${OBJS}) LIBS = libexample.so -LIBRARIES = $(addprefix ${IMGDIR}/, ${LIBS}) - -all: ${OBJECTS} ${LIBRARIES} - -clean: - (rm -f ${OBJECTS} $(addsuffix .hash, ${OBJECTS}) ${LIBRARIES} ) include ${ROOTPATH}/config.mk |