home *** CD-ROM | disk | FTP | other *** search
/ Atari FTP / ATARI_FTP_0693.zip / ATARI_FTP_0693 / Mint / toswinsc.zoo / makefile < prev    next >
Makefile  |  1992-10-27  |  542b  |  19 lines

  1. MODEL= -mshort
  2. LIBS= -lgem16
  3. CFLAGS=    $(MODEL) -G -O2 -Wall -fomit-frame-pointer
  4.  
  5.  
  6. XGEM1= event.o window.o textwin.o menu.o winmenu.o objwin.o
  7. XGEM= $(XGEM1) popup.o
  8.  
  9. TOSWIN= toswin.o vt52.o util.o iconify.o scrap.o filbuf.o config.o winops.o \
  10.     font.o environ.o gadgets.o
  11.  
  12. # 'setfast' is a program that sets the TT-RAM and fastload bits
  13. # if you don't have such a program, just delete the
  14. # 'setfast toswin.prg' line
  15.  
  16. toswin.prg: $(TOSWIN) $(XGEM1)
  17.     gcc $(MODEL) -o toswin.prg $(TOSWIN) $(XGEM1) $(LIBS)
  18.     setfast toswin.prg
  19.