home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / NETWORK / ISP / bind.4.8.3.lzh / BIND483 / TOOLS / NSLOOKUP / Makefile < prev    next >
Makefile  |  1994-09-23  |  547b  |  17 lines

  1. CSRCS=    main.c getinfo.c debug.c send.c skip.c list.c subr.c
  2. SRCS=    ${CSRCS} commands.c
  3. OBJS=    main.r getinfo.r debug.r send.r skip.r list.r subr.r commands.r
  4. DEFS=   -DDEBUG -DSYSV
  5. CFLAGS= -O ${DEFS} -T/dd -I.../include -I.../res -I/h0/blarslib/defs -O0 -Dis68k -g
  6. LFLAGS =  -l.../res/libresolv.l -l/dd/lib/socklib.l -l/dd/lib/netdb.l \
  7.    -l/h0/blarslib/blarslib.l -l/dd/lib/os9lib.l -g -s 50
  8. CC = gcc2
  9. ODIR = .../cmds
  10.  
  11. .c.r:
  12.     ${CC} ${CFLAGS} -c -o $*.r $<
  13.  
  14. $(ODIR)/nslookup : $(OBJS)
  15.     ${CC}  ${CFLAGS} $(OBJS) -o $(ODIR)/nslookup $(LFLAGS)
  16.  
  17.