X-Git-Url: http://git.tuebingen.mpg.de/?p=osl.git;a=blobdiff_plain;f=Makefile;h=0674495fe2ad81c70686682a69796aaf809e26c3;hp=44011bd517d3528c85a8d58c555d474f5f03c95d;hb=aaedc06d0448b048c7d41074985f9ee81e93d077;hpb=ccff47589991a85266898c2df753af63770a1601 diff --git a/Makefile b/Makefile index 44011bd..0674495 100644 --- a/Makefile +++ b/Makefile @@ -78,6 +78,11 @@ ifeq ($(uname_s),NetBSD) LDFLAGS += -Wl,-soname,$(soname) endif +ifeq ($(uname_s),FreeBSD) + format := elf + LDFLAGS += -Wl,-soname,$(soname) +endif + ifeq ($(format),elf) # On ELf-based systems, the following conventions apply (see dhweeler's # Program Library HOWTO): @@ -143,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