mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-19 09:18:33 +00:00
40 lines
1.2 KiB
Plaintext
Executable File
40 lines
1.2 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 ldex.o
|
|
##########################################################################
|
|
|
|
default : ldesingle ldemulti ldex 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
|
|
|
|
ldex : ldex.o usersubrs.o
|
|
cc ldex.o usersubrs.o -f68881 -lX11 -lpixrect -lc -o ldex
|
|
|
|
ldeether : ldeether.c
|
|
cc ldeether.c -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 ldex ldeether runlisp usersubrs.o
|
|
|
|
|