home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 4 / CDPD_IV.bin / networking / dnet / dnet2.3.2 / amiga / server / makefile < prev    next >
Encoding:
Makefile  |  1994-06-29  |  966 b   |  50 lines

  1.  
  2. #    DNET SERVERS
  3. #
  4. #  DNET (c)Copyright 1988, Matthew Dillon, All Rights Reserved.
  5. #
  6. #  GCC patches.
  7. #   
  8.  
  9. CC    = gcc
  10. CFLAGS    = -Idnet:amiga/
  11. BIN    = dnet:amiga/bin/
  12. OD    = dnet:amiga/server/
  13. SRCS    = sgcopy.c scopy.c spasswd.c sprint.c sterm.c scli.c
  14. OBJS    = sgcopy.o scopy.o spasswd.o sprint.o sterm.o scli.o
  15. BINS    = sgcopy scopy spasswd sprint sterm scli
  16. SYMS    = 
  17. LIBS    = -Ldnet:amiga/lib -ldnet -Ldnet:amiga/suplib -lSup -lamy 
  18. RM     = work:util/rm -f
  19. COPY    = c:copy
  20.  
  21.  
  22. all: $(SYMS) $(BINS)
  23.  
  24. #$(BINS) : $(OBJS)
  25. #    $(CC) -o %(left) %(right) $(LIBS)
  26.  
  27. sgcopy: sgcopy.o
  28.     $(CC) -o $@ sgcopy.o $(LIBS)
  29. scopy:  scopy.o
  30.     $(CC) -o $@ scopy.o $(LIBS)
  31. spasswd: spasswd.o
  32.     $(CC) -o $@ spasswd.o $(LIBS)
  33. sprint:    sprint.o
  34.     $(CC) -o $@ sprint.o $(LIBS)
  35. sterm: sterm.o
  36.     $(CC) -o $@ sterm.o $(LIBS)
  37. scli: scli.o
  38.     $(CC) -o $@ scli.o $(LIBS)
  39.  
  40. #$(OBJS) : $(SRCS)
  41. #    $(CC) $(CFLAGS) -H$(SYMS) -o %(left) -c %(right) 
  42.  
  43. clean:
  44.     $(RM) $(OBJS)
  45.  
  46. realclean: reallyclean
  47.  
  48. reallyclean: 
  49.     $(RM) $(BINS)
  50.