home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / ixemul-45.0-src.tgz / tar.out / contrib / ixemul / net / Makefile.in < prev    next >
Makefile  |  1996-09-28  |  979b  |  57 lines

  1. #### Start of system configuration section. ####
  2.  
  3. srcdir =    @srcdir@
  4.  
  5. ifeq ($(srcdir),.)
  6. srcdir = ..
  7. endif
  8.  
  9. VPATH :=    $(srcdir)
  10.  
  11. # Common prefix for machine-independent installed files.
  12. prefix =    @prefix@
  13.  
  14. # Common prefix for machine-dependent installed files.
  15. exec_prefix =    @exec_prefix@
  16.  
  17. bindir =    $(exec_prefix)/bin
  18. libdir =    $(exec_prefix)/Sys/libs
  19.  
  20. INSTALL =    @INSTALL@
  21. INSTALL_DATA =    @INSTALL_DATA@
  22.  
  23. CC =        @CC@
  24.  
  25. CFLAGS =    @CFLAGS@
  26. LDFLAGS =    @LDFLAGS@
  27.  
  28. RANLIB =    @RANLIB@
  29. AR =        ar
  30.  
  31. #### End system configuration section ####
  32.  
  33. FLAVOR_CFLAGS =    -m$(CPU) -m$(FPU) -f$(BASE)
  34. OTHER_CFLAGS =    -fomit-frame-pointer
  35. ALL_CFLAGS =    $(CFLAGS) $(FLAVOR_CFLAGS) $(OTHER_CFLAGS) $(INCS) $(DEFS)
  36.  
  37. DEFS =
  38. INCS =        -I$(srcdir) -I$(srcdir)/../library -I$(srcdir)/../include
  39.  
  40. .c.o:
  41.         $(CC) $(ALL_CFLAGS) -c $< -o $@
  42.  
  43. SRC =        $(notdir $(wildcard $(srcdir)/*.c))
  44.  
  45. OBJ =        $(SRC:.c=.o)
  46.  
  47. libnet.a:    $(OBJ)
  48.         rm -f $@
  49.         $(AR) rc $@ $(OBJ)
  50.         $(RANLIB) $@
  51.  
  52. clean:
  53.         rm -rf *baserel
  54.  
  55. clobber:    clean
  56.         rm -f Makefile
  57.