Path: utzoo!attcan!uunet!tut.cis.ohio-state.edu!ucbvax!bloom-beacon!eru!luth!sunic!mcsun!unido!marco!leo From: leo@marco.UUCP (Matthias Pfaller) Newsgroups: comp.os.minix Subject: Re: zmachine part 2/2 Summary: the missing makefiles (sorry) Keywords: infocom with minix Message-ID: <329@alice.marco.UUCP> Date: 14 Mar 90 08:28:24 GMT References: <324@alice.marco.UUCP> Organization: marco GmbH, 8047 Karlsfeld, West-Germany Lines: 49 Sorry, but I have forgotten the makefiles; I received the pcminix-makefile from Robert R. Hall (hall@nosc.mil). I hope it will work. In the file zbios.c the last line got somehow lost. Please insert a '#endif' as the last line. leo@marco.UUCP (Matthias Pfaller) # -------------------- cut --------------------- echo x - stminix.mk sed '/^X/s///' > stminix.mk << '/' XOBJS = zmachine.o \ X io.o \ X mem.o \ X code.o \ X zbios.o X XBIN = $(HOME)/bin X XCFLAGS = -O -Dunix -Dminix X Xall: zmachine X Xzmachine: $(OBJS) X $(CC) -o zmachine $(OBJS) X X$(OBJS): zmachine.h config.h X Xio.o bios.o: keys.h X Xinstall: all X cp zmachine $(BIN)/zmachine X strip $(BIN)/zmachine / echo x - pcminix.mk sed '/^X/s///' > pcminix.mk << '/' XCFLAGS= -F -D_MINIX -D_POSIX_SOURCE -Dminix -Dunix XLDFLAGS =-i X XOBJS =code.s io.s mem.s zbios.s zmachine.s X Xzmachine: $(OBJS) X asld $(LDFLAGS) -o zmachine $(OBJS) X Xclean: X @rm $(OBJS) X /