File: Makefile-NetBSD

package info (click to toggle)
exim 3.36-16sarge1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 5,736 kB
  • ctags: 3,572
  • sloc: ansic: 52,492; sh: 1,158; perl: 577; makefile: 341
file content (17 lines) | stat: -rw-r--r-- 441 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Exim: OS-specific make file for NetBSD (ELF binary format)
# Submitted by: Vadim Vygonets <vadik@cs.huji.ac.il>

# Include Makfile.NetBSD-a.out

.if exists(OS/Makefile-NetBSD-a.out)
.include "OS/Makefile-NetBSD-a.out"
.elif exists(../OS/Makefile-NetBSD-a.out)
.include "../OS/Makefile-NetBSD-a.out"
.else
.include "Makefile.NetBSD-a.out, submit a bug report."
.endif

# NetBSD ELF linker needs a -R flag.
XLFLAGS+=-Wl,-R$(X11)/lib/

# End