home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 3 / CDPDIII.bin / pd / programming / c / curses / src / makefile < prev    next >
Encoding:
Makefile  |  1992-06-30  |  1.9 KB  |  77 lines

  1. # -*-make-*-
  2. ##################################################################
  3. #
  4. # Desc   : Makefile for Amiga curses library.
  5. #
  6. # Author : Simon J Raybould.    (sie@fulcrum.bt.co.uk)
  7. #
  8. # Date   : Friday 23rd August 1991.
  9. #
  10. #
  11. # Revision History
  12. # ================
  13. #
  14. # $Log:    Makefile,v $
  15. # Revision 1.7  92/06/10  23:44:42  sie
  16. # Added serial support.
  17. # Revision 1.6  92/01/28  00:11:43  sie
  18. # removed -q1e1w as these are now defaults.
  19. # Revision 1.5  92/01/28  00:10:40  sie
  20. # compacts the header file.
  21. # Revision 1.4  92/01/25  23:53:48  sie
  22. # clean now removed emacs temporary files as well.
  23. # Revision 1.3  91/12/28  22:49:15  sie
  24. # made "clean" remove the library.
  25. # Revision 1.2  91/09/28  17:53:40  sie
  26. # Put clone on both copy instructions.
  27. # Revision 1.1  91/09/07  11:55:48  sie
  28. # Initial revision
  29. #
  30. ##################################################################
  31.  
  32.  
  33. .c.o:
  34.     $(CC) $(CFLAGS) $<
  35. #    oml $(LIB) R $@
  36.     oml $(LIB) R $>.o
  37.  
  38.  
  39. VER= V2.00
  40. CC= lc
  41. OBJS=    wclrtobot.o flushinp.o wgetstr.o subwin.o mvprintw.o wscanw.o \
  42.     scanw.o mvwscanw.o mvscanw.o printw.o newwin.o _creatwin.o \
  43.     touchwin.o delwin.o mvwin.o scroll.o wsetscrreg.o _scroll.o \
  44.     scrollok.o wnoutrefresh.o doupdate.o echo.o noecho.o beep.o \
  45.     wrefresh.o initscr.o wgetch.o wstandout.o keypad.o flash.o \
  46.     initcolour.o _data.o startcolour.o hascolours.o waddstr.o \
  47.     waddch.o winsch.o wdelch.o wclear.o werase.o clearok.o wclrtoeol.o \
  48.     wstandend.o wattrset.o wattron.o wattroff.o cbreak.o nocbreak.o \
  49.     idlok.o winsertln.o wdeleteln.o nodelay.o resetty.o savetty.o \
  50.     resetterm.o fixterm.o saveterm.o baudrate.o nl.o nonl.o box.o \
  51.     mvwprintw.o _togcur.o wmove.o _zapcur.o _drawcur.o _exit.o endwin.o \
  52.     mvcur.o wprintw.o leaveok.o winch.o _doecho.o _cleanup.o _ansi.o
  53.  
  54.  
  55. #DEBUG= -d5
  56. CFLAGS= $(DEBUG)
  57.  
  58. LIB= curses.lib
  59. LIBDIR= LLIB:
  60.  
  61.  
  62. $(LIB): $(OBJS) curses.h acurses.h
  63.     copy $(LIB) $(LIBDIR) clone
  64.     copy curses.h INCLUDE: CLONE
  65.  
  66. clean:
  67.     -delete \#?.o
  68.     -delete TAGS
  69.     -delete $(LIB)
  70.