add Berkeley specific header
[unix-history] / usr / src / usr.bin / tn3270 / ctlr / makefile
index 447924e..2f131d5 100644 (file)
+#
+# Copyright (c) 1988 Regents of the University of California.
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms are permitted
+# provided that this notice is preserved and that due credit is given
+# to the University of California at Berkeley. The name of the University
+# may not be used to endorse or promote products derived from this
+# software without specific prior written permission. This software
+# is provided ``as is'' without express or implied warranty.
+#
+#      @(#)makefile    3.2 (Berkeley) %G%
+#
+# msdos versus unix defines
+O      = .o
+#PC_O  = .obj
+
+X      =
+#PC_X  = .exe
+
+L      =
+#PC_L  = -link
+
 CC     = cc
 CC     = cc
+#PC_CC = cl
+
+MV     = mv
+#PC_MV = rename
+
+RM     = rm -f
+#PC_RM= erase
+
+LINT_ARGS =
+#PC_LINT_ARGS = -DLINT_ARGS
+
+DEBUG_FLAGS = -g
+#PC_DEBUG_FLAGS = -Zi -Od
+
+AR     = ar
+AR1    = cr
+AR2    =
+AR3    =
+#PC_AR = lib
+#PC_AR1        =
+#PC_AR2        = +
+#PC_AR3        = ";"
+
+RANLIB = ranlib
+#PC_RANLIB = echo "Done with "
+
 PRINT  = print
 
 PRINT  = print
 
-DEFINES =
+DEFINES = ${LINT_ARGS}
 
 INCLUDES = -I.
 
 OPTIMIZE = -O
 
 INCLUDES = -I.
 
 OPTIMIZE = -O
-OPTIMIZE = -g
+OPTIMIZE = ${DEBUG_FLAGS}
 
 CFLAGS = $(OPTIMIZE) $(INCLUDES) $(DEFINES)
 
 # Lint flags
 LINTFLAGS      = -hbxaz
 
 CFLAGS = $(OPTIMIZE) $(INCLUDES) $(DEFINES)
 
 # Lint flags
 LINTFLAGS      = -hbxaz
-# How to install the bloody thing...
+
+# Which keyboard are we emulating.
+KBD    = 3180.kbd
+KBD    = 3270pc.kbd
+KBD    = unix.kbd
 
 # The source files...
 
 # The source files...
-ALLH = dctype.h ebc_disp.h hostctlr.h kbdctlr.h options.h screen.h scrnctlr.h
+ALLH = api.h function.h hostctlr.h inbound.ext oia.h \
+       options.ext options.h outbound.ext screen.h scrnctlr.h
 
 
-MOSTC =        dctype.c ebc_disp.c genbsubs.c inbound.c options.c outbound.c
+ALLC = api.c function.c inbound.c oia.c options.c outbound.c
 
 
-ALLC = ${MOSTC}
-ALLC = ${MOSTC}
+# Note: NO function.o!
+ALLO = api$O inbound$O oia$O options$O outbound$O
 
 
-MOSTO =        dctype.o ebc_disp.o genbsubs.o inbound.o options.o outbound.o
+ALLPRINT =     3180.kbd 3270pc.kbd unix.kbd ${ALLH} ${ALLC}
 
 
-ALLO   = $(MOSTO)
+ALLSOURCE =    ${ALLPRINT} makefile makefile.mak
 
 .s.o:
        /lib/cpp -E $< | as -o $@
 
 
 .s.o:
        /lib/cpp -E $< | as -o $@
 
-ctlrlib:       ${ALLO}
-       ar cr ctlrlib ${ALLO}
-       ranlib ctlrlib
+.c.obj:
+       ${CC} ${CFLAGS} -c $<
+
+ctlrlib.a:     ${ALLO}
+       ${RM} $@
+       for i in ${ALLO}; do (${AR} ${AR1} $@ ${AR2} $$i${AR3}); done
+       ${RANLIB} $@
 
 clean:
 
 clean:
-       rm -f $(ALLO) mset tn3270 prt3270 m4.out errs makefile.bak ctlrlib
-       rm -f 3270pc.out
+       for i in $(ALLO) mset tn3270 prt3270 m4.out errs \
+               makefile.bak ctlrlib.a kbd.out TMPfunc.out; \
+                       do (${RM} $$i); done
+
+sccsclean:
+       -sccs clean
+       -sccs get makefile
+
+sourcelist:    ${ALLSOURCE}
+       @for i in ${ALLSOURCE}; \
+               do (echo ${DIRPATH}$$i); done
 
 print:
 
 print:
-       ${PRINT} ${ALLH} ${M4FILE} default.map
-       ${PRINT} ${MOSTC}
-       ${PRINT} ${MSMAIN} ${TNMAIN} ${PRT3270MAIN}
+       ${PRINT} ${ALLPRINT}
 
 tags:  ${ALLC} ${ALLH}
        ctags -t ${ALLC} ${ALLH}
 
 
 tags:  ${ALLC} ${ALLH}
        ctags -t ${ALLC} ${ALLH}
 
+action:
+       ${ACTION}
+
 lint:
 lint:
-       lint ${LINTFLAGS} ${INCLUDES} ${DEFINES} -DTN3270 \
-                               ${TNMAIN} ${MOSTC} -lcurses
-       lint ${LINTFLAGS} ${INCLUDES} ${DEFINES} ${MSMAIN} map3270.c -lcurses
+       lint ${LINTFLAGS} ${INCLUDES} ${DEFINES} -DTN3270 ${ALLC} -lcurses
 
 .DEFAULT:
        sccs get $<
 
 
 .DEFAULT:
        sccs get $<
 
-3270pc.out:    3270pc.kbd hostctlr.h
-       (cd ../tools; make mkhits $(MFLAGS) )
-       -/bin/rm $@ function.out TMPfunc.c
-       /bin/echo \#include \"function.h\" > TMPfunc.c
-       $(CC) $(CFLAGS) -E TMPfunc.c > function.out
-       ../tools/mkhits - ../ctlr/function.out < 3270pc.kbd > $@
-       -/bin/rm function.out TMPfunc.c
+kbd.out:       $(KBD) hostctlr.h
+       (cd ../tools; make mkhits$X )
+       ${RM} $@ TMPfunc.out
+       $(CC) $(CFLAGS) -E function.c > TMPfunc.out
+       ../tools/mkhits - ../ctlr/TMPfunc.out < $(KBD) > $@
+       ${RM} TMPfunc.out
 
 depend:
        grep '^#include' ${ALLC} | grep -v '<' | \
        sed -e 's/:[^"]*"\([^"]*\)".*/: \1/' \
 
 depend:
        grep '^#include' ${ALLC} | grep -v '<' | \
        sed -e 's/:[^"]*"\([^"]*\)".*/: \1/' \
-           -e 's/\.c/.o/' | \
+           -e 's/\.c/$$O/' | \
        awk ' { if ($$1 != prev) { print rec; rec = $$0; prev = $$1; } \
                else { if (length(rec $$2) > 78) { print rec; rec = $$0; } \
                       else rec = rec " " $$2 } } \
        awk ' { if ($$1 != prev) { print rec; rec = $$0; prev = $$1; } \
                else { if (length(rec $$2) > 78) { print rec; rec = $$0; } \
                       else rec = rec " " $$2 } } \
@@ -73,16 +138,21 @@ depend:
        echo '/^# DO NOT DELETE THIS LINE/+1,$$d' >eddep
        echo '$$r makedep' >>eddep
        echo 'w' >>eddep
        echo '/^# DO NOT DELETE THIS LINE/+1,$$d' >eddep
        echo '$$r makedep' >>eddep
        echo 'w' >>eddep
+       -rm -f makefile.bak
        cp makefile makefile.bak
        ed - makefile < eddep
        rm eddep makedep
 
 # DO NOT DELETE THIS LINE
 
        cp makefile makefile.bak
        ed - makefile < eddep
        rm eddep makedep
 
 # DO NOT DELETE THIS LINE
 
-dctype.o: dctype.h
-inbound.o: ../general.h function.h hostctlr.h scrnctlr.h screen.h options.h
-inbound.o: dctype.h ebc_disp.h ../system/globals.h inbound.ext outbound.ext
-inbound.o: ../telnet.ext 3270pc.out
-options.o: options.h ../system/globals.h options.ext
-outbound.o: hostctlr.h screen.h ebc_disp.h ../system/globals.h options.ext
-outbound.o: ../telnet.ext inbound.ext outbound.ext bsubs.ext
+api$O: api.h ../general/general.h ../api/disp_asc.h screen.h oia.h
+api$O: ../general/globals.h
+function$O: function.h
+inbound$O: ../general/general.h function.h hostctlr.h oia.h scrnctlr.h screen.h
+inbound$O: options.h ../api/dctype.h ../api/ebc_disp.h ../general/globals.h
+inbound$O: inbound.ext outbound.ext ../telnet.ext kbd.out
+oia$O: ../general/general.h oia.h ../general/globals.h
+options$O: options.h ../general/globals.h options.ext
+outbound$O: ../general/general.h hostctlr.h oia.h screen.h ../api/ebc_disp.h
+outbound$O: ../general/globals.h options.ext ../telnet.ext inbound.ext
+outbound$O: outbound.ext ../general/bsubs.ext