home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Exec 4 / CD_Magazyn_EXEC_nr_4.iso / Recent / dev / c / apputil.lha / apputil / Smakefile < prev    next >
Encoding:
Makefile  |  2000-11-05  |  952 b   |  47 lines

  1. ##
  2. ## Smakefle
  3. ## ========
  4. ## Makefile for apputil link library.  Requires SAS/SMAKE.
  5. ##
  6. ## Copyright (C) 1999-2000 Håkan L. Younes (lorens@hem.passagen.se)
  7. ##
  8.  
  9. .o.lib:
  10.     oml $(OMLFLAGS) $@ r $?
  11.  
  12.  
  13. CDEFINES = def=__USE_SYSBASE
  14. CDEBUGFLAGS = #debug=sf
  15. COPTFLAGS = opt optsched utillib
  16. CFLAGS = $(CDEFINES) $(CDEBUGFLAGS) $(COPTFLAGS) strict ansi nochkabort\
  17.  noicons nover nostkchk nostkext params=b strmer
  18.  
  19. OMLFLAGS = -b -n
  20. OBJS = buttonclass.o gadgets.o localize.o menus.o readargs.o requesters.o\
  21.  settings.o windows.o strings.o
  22.  
  23. LIBDEST = :lib
  24. INCLUDEDEST = :include
  25.  
  26.  
  27. all: apputil.lib
  28.  
  29. apputil.lib: $(OBJS)
  30.  
  31. buttonclass.o: buttonclass.c
  32. gadgets.o:     gadgets.c
  33. localize.o:    localize.c
  34. menus.o:       menus.c
  35. readargs.o:    readargs.c
  36. requesters.o:  requesters.c
  37. settings.o:    settings.c
  38. windows.o:     windows.c
  39. strings.o:     strings.c
  40.  
  41. install:
  42.     copy apputil.lib $(LIBDEST)
  43.     copy apputil.h $(INCLUDEDEST)
  44.  
  45. clean:
  46.     -delete \#?.o \#?.lib \#?.lha
  47.