ttyload/Makefile

67 lines
1.6 KiB
Makefile
Raw Normal View History

# Makefile for ttyload
# Copyright 2001 by David Lindes, All Rights Reserved
# see the "LICENSE" file for licensing info.
# change this if you want to use 'make install' and have it go
# somewhere else:
INSTALLDIR = /usr/local/bin
ARCH = `uname -s`
OBJS = arch/${ARCH}/getload.o arch/default/homebrews.o
2000-05-20 03:46:27 +02:00
# this is what I use most places...
CC=gcc
# for the things in the sub-directory:
INCLUDES = -I$${PWD:-.} \
-I$${PWD:-.}/arch/${ARCH} \
-I$${PWD:-.}/arch/default
# Hopefully you don't need this... on Solaris (SunOS), though,
# you probably do. Uncomment it if things don't build:
# OTHER_FLAGS = -DNEED_LOCAL_HEADERS
2000-05-20 03:46:27 +02:00
# Debugging compiles?
DEBUG = -g
VERSION = -DVERSION='"'`cat Version`'"'
CFLAGS = $(INCLUDES) $(OTHER_FLAGS) $(DEBUG) $(VERSION)
# most people won't want loader, so don't bother building it:
# PROGRAMS = archbuild loader
PROGRAMS = archbuild
default: $(PROGRAMS)
test: archbuild
2001-02-24 11:56:15 +01:00
./ttyload -i 1
archbuild:
make ttyload ARCH=`uname -s`
ttyload.c: ttyload.h Version
touch ttyload.c
# have to be explicit here, for some make systems, like .c.o below:
ttyload: $(OBJS) ttyload.o
$(CC) -o $@ $(OBJS) ttyload.o
clean:
rm -f *.o $(OBJS)
clobber: clean
rm -f loader ttyload
# install, gently. not much to it:
install: archbuild
/bin/cp -i ttyload ${INSTALLDIR}/ttyload
# because different systems' make have different behaviors on how they
# deal with building stuff in subdirectories, and because I don't feel
# like descending into the subdirectories to make a single object file,
# I'll force the .c.o rule to what I'm expecting:
.c.o:
$(CC) $(CFLAGS) -o $@ -c $<