From aaedc06d0448b048c7d41074985f9ee81e93d077 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Fri, 12 Jun 2009 21:55:08 +0200 Subject: [PATCH] Add #ifdef wrapper for osl.h. This allows to include osl.h more than once. --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cbffcb7..0674495 100644 --- a/Makefile +++ b/Makefile @@ -148,7 +148,10 @@ errtab.h: errlist sed -e 's/^\([A-Z_]*\)\s*\(.*\)/OSL_ERROR(E_OSL_\1, \2)/g' $< > $@ osl.h: osl.h.in osl_errors.h Makefile - cat osl.h.in osl_errors.h > $@ + echo '#ifndef _OSL_H' > $@ + echo '#define _OSL_H' >> $@ + cat osl.h.in osl_errors.h >> $@ + echo '#endif /* _OSL_H */' >> $@ clean: rm -f *.o $(realname) osl.h osl_errors.h errtab.h fsck.cmdline.h \ fsck.cmdline.c oslfsck -- 2.39.2