home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / ixemul-45.0-src.tgz / tar.out / contrib / ixemul / static / Makefile.in < prev    next >
Makefile  |  1996-09-28  |  978b  |  56 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. ALL_CFLAGS =    $(CFLAGS) $(FLAVOR_CFLAGS) $(INCS) $(DEFS)
  35.  
  36. DEFS =        -DTM_GMTOFF=tm_gmtoff -DTM_ZONE=tm_zone -DNOID
  37. INCS =        -I$(srcdir) -I$(srcdir)/../library -I$(srcdir)/../include
  38.  
  39. .c.o:
  40.         $(CC) $(ALL_CFLAGS) -c $< -o $@
  41.  
  42. SRC =        $(wildcard $(srcdir)/*.c)
  43.  
  44. OBJ =        $(notdir $(SRC:.c=.o))
  45.  
  46. libstatic.a:    $(OBJ)
  47.         rm -f $@
  48.         $(AR) rc $@ $(OBJ)
  49.         $(RANLIB) $@
  50.  
  51. clean:
  52.         rm -rf *baserel
  53.  
  54. clobber:    clean
  55.         rm -f Makefile
  56.