home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / b / bsdlib8f.zip / BSDSRC.ZIP / EMX / BSD / CURSES / MAKEFILE < prev    next >
Text File  |  1992-09-04  |  627b  |  23 lines

  1. #    @(#)Makefile    5.10 (Berkeley) 6/24/90
  2.  
  3. CC=    gcc -O
  4. CFLAGS= -I. -DOS2
  5.  
  6. .c.o:
  7.     $(CC) -c $(CFLAGS) $<
  8.  
  9. SRCS=    addbytes.c addch.c addstr.c box.c clear.c clrtobot.c clrtoeol.c \
  10.     cr_put.c cr_tty.c curses.c delch.c deleteln.c delwin.c endwin.c \
  11.     erase.c fullname.c getch.c getstr.c idlok.c id_subwi.c initscr.c \
  12.     insch.c insertln.c longname.c move.c mvprintw.c mvscanw.c mvwin.c \
  13.     newwin.c overlay.c overwrit.c printw.c putchar.c refresh.c scanw.c \
  14.     scroll.c touchola.c standout.c touchwin.c tstp.c unctrl.c os2.c
  15. MAN3=    curses.0
  16.  
  17. OBJS=   $(SRCS:.c=.o)
  18.  
  19. libcurse.a: $(OBJS)
  20.     -del $@
  21.     ar r $@ $(OBJS)
  22.     ar s $@
  23.