From: Andre Noll Date: Fri, 12 Jun 2009 19:55:08 +0000 (+0200) Subject: Add #ifdef wrapper for osl.h. X-Git-Tag: v0.1.0~29 X-Git-Url: http://git.tuebingen.mpg.de/?p=osl.git;a=commitdiff_plain;h=aaedc06d0448b048c7d41074985f9ee81e93d077;ds=sidebyside Add #ifdef wrapper for osl.h. This allows to include osl.h more than once. --- 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