1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-20 09:45:13 +00:00
Interlisp.maiko/bin/usermakefile-sunos4.mc68020-multi

38 lines
1.1 KiB
Plaintext
Executable File

##########################################################################
# This is the user installation makefile, it does not make the "source"
# files in this directory, i.e. it uses the objectfiles :
# ldesingle.o, ldemulti.o
##########################################################################
default : ldesingle ldemulti ldeether
#### The native translator needs the symbol table in 'ldesingle' or 'ldemulti',
#### so don't 'strip'.
ldesingle : ldesingle.o usersubrs.o
cc ldesingle.o usersubrs.o -f68881 -lsuntool -lsunwindow -lpixrect -lc -lm -o ldesingle
ldemulti : ldemulti.o usersubrs.o
cc ldemulti.o usersubrs.o -f68881 -lsuntool -lsunwindow -lpixrect -lc -lm -o ldemulti
ldeether : ldeether.c
cc ldeether.c -DOS4 -o ldeether
@echo ""
@echo "The 'ldeether' executable must be made setuid root to allow"
@echo "PUP/XNS Ethernet access. Feel free to examine the source"
@echo "of 'ldeether' before doing this."
#### user ops is placeholder for user subrs. needs work.
usersubrs.o : usersubrs.c
cc -c -O usersubrs.c
#### gets rid of user-created files.
cleanup :
rm -f ldesingle ldemulti ldeether runlisp usersubrs.o