diff options
author | Marc Espie <espie@cvs.openbsd.org> | 1998-08-13 21:08:17 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 1998-08-13 21:08:17 +0000 |
commit | 248cbbdc7fc28f38fa8e6e2b52d8535eded841c8 (patch) | |
tree | d26660304a8adf3e2adb409a26958fe139bc0303 /sys/arch/amiga/stand/loadbsd/Makefile | |
parent | 5986825ad3ea2a668079aba41f65beab405d6156 (diff) |
Make loadbsd aware of poolmem (mainly, kill poolmem before scanning the
memory list)
Diffstat (limited to 'sys/arch/amiga/stand/loadbsd/Makefile')
-rw-r--r-- | sys/arch/amiga/stand/loadbsd/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/sys/arch/amiga/stand/loadbsd/Makefile b/sys/arch/amiga/stand/loadbsd/Makefile index a73004d2fd9..dfa5fd6e802 100644 --- a/sys/arch/amiga/stand/loadbsd/Makefile +++ b/sys/arch/amiga/stand/loadbsd/Makefile @@ -1,11 +1,10 @@ -# $OpenBSD: Makefile,v 1.2 1998/03/29 22:24:49 espie Exp $ +# $OpenBSD: Makefile,v 1.3 1998/08/13 21:08:08 espie Exp $ CC = gcc -CFLAGS = -m68030 -Wall -O3 -fomit-frame-pointer -D__progname=program_name -msmall-code -resident +CFLAGS = -m68030 -Wall -O3 -fomit-frame-pointer -D__progname=program_name -msmall-code -resident -OBJS = loadbsd.o getopt.o sleep.o vers.o vers_ixemul.o openlibs_ixemul.o openlibs_stub.o -OBJS1 = loadbsd.o getopt.o sleep.o vers.o openlibs_stub.o -OBJS2 = loadbsd.o vers_ixemul.o openlibs_ixemul.o +OBJS1 = loadbsd.o poolmem.o getopt.o sleep.o vers.o openlibs_stub.o +OBJS2 = loadbsd.o poolmem.o vers_ixemul.o openlibs_ixemul.o PROGS=loadbsd loadbsd.ixemul # add -lamiga if you can't get inlines to work @@ -21,4 +20,4 @@ loadbsd.ixemul: $(OBJS2) $(CC) $(CFLAGS) $(LDFLAGS) -o loadbsd.ixemul $(OBJS2) $(LIBS) clean: - -rm $(OBJS) $(PROGS) + -rm $(OBJS1) $(OBJS2) $(PROGS) |