Files
retrobsd/src/cmd/med/Makefile
Serge 8458c9e3c4 Fix linking of user programs.
Start fixing awk.
2022-05-25 23:05:45 -07:00

28 lines
649 B
Makefile

#==========================================
# Makefile: makefile for med
# Copyright 2012 Majenko Technolohies
# (matt@majenko.co.uk
# Last Modified: 29/01/2012
#==========================================
TOPSRC = $(shell cd ../../..; pwd)
include $(TOPSRC)/target.mk
OBJS = med.o
SRCS = med.c
LIBS += -lcurses -ltermcap -lvmf -lc
all: med
med: ${OBJS}
${LD} ${LDFLAGS} -o med.elf ${OBJS} ${LIBS}
${OBJDUMP} -S med.elf > med.dis
${SIZE} med.elf
${ELF2AOUT} med.elf $@ && rm med.elf
clean:
-rm -f med ${OBJS} med.elf med.dis
install: all
install med $(DESTDIR)/bin/