home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / x / volume21 / notes / part01 / Imakefile < prev    next >
Encoding:
Makefile  |  1993-10-20  |  858 b   |  29 lines

  1. /*
  2.  * change the definition of H_OFS and V_OFS to match what your
  3.  * window manager does to transient popups -- values given here
  4.  * are for twm with a borderWidth setting of 3 -- if you have no
  5.  * idea what I'm talking about, but you notice that saved notes seem
  6.  * to 'creep' away from their saved positions, then you should
  7.  * probably look into this...
  8.  */
  9. H_OFS=2
  10. V_OFS=24
  11.  
  12. #if defined(SunArchitecture) && (OSMajorVersion == 3)
  13.         DEFINES = -DNEED_STRDUP -DH_OFFSET=$(H_OFS) -DV_OFFSET=$(V_OFS)
  14. #else
  15.         DEFINES = -DH_OFFSET=$(H_OFS) -DV_OFFSET=$(V_OFS)
  16. #endif
  17.  
  18.  /* CDEBUGFLAGS = -g */
  19.            SRCS = main.c callbacks.c
  20.            OBJS = main.o callbacks.o
  21. LOCAL_LIBRARIES = XawClientLibs
  22.         DEPLIBS = XawClientDepLibs
  23.  
  24. ComplexProgramTarget(notes)
  25. InstallNonExec(notes.xbm, $(INCDIR)/bitmaps)
  26.  
  27. kit::
  28.     makekit -iMANIFEST -oMANIFEST -h2
  29.