freebsd-dev/usr.bin/objformat/Makefile
Peter Wemm 6593044822 Import intial version of an a.out/elf tool wrapper/selector. It is
not active yet, just a work-in-progress.
1998-03-10 05:20:58 +00:00

17 lines
254 B
Makefile

# $FreeBSD$
PROG= objformat
NOMAN= not yet
CFLAGS+= -DMAIN
.if ${BINFORMAT} == elf
CFLAGS+= -DFREEBSD_ELF
.else
CFLAGS+= -DFREEBSD_AOUT
.endif
# LINKS+= /usr/bin/objformat /usr/bin/as
# LINKS+= /usr/bin/objformat /usr/bin/ld
.include <bsd.prog.mk>