File: Imakefile

package info (click to toggle)
wmavgload 0.6.1-1
  • links: PTS
  • area: main
  • in suites: slink
  • size: 112 kB
  • ctags: 66
  • sloc: ansic: 524; makefile: 36; sh: 35
file content (23 lines) | stat: -rw-r--r-- 721 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* installation directory is the combination of $(DESTDIR)  and $(BINDIR)*/
DESTDIR = /usr/X11R6
BINDIR = $(DESTDIR)/bin

XPMLIB = -L/usr/lib/X11 -L/opt/X11_Contrib/lib/sparc -lXpm -lm  
DEPLIBS = $(DEPXLIB) 

/* uncomment -lrpcsvc at the end of the line below if compile on *sparc* */
LOCAL_LIBRARIES = $(XPMLIB) $(XLIB) /* -lrpcsvc */

LINTLIBS = $(LINTXLIB)

EXTRA_INCLUDES = -I/opt/X11_Contrib/include

/* if your compiler does not define linux 
   please add -Dlinux below (if you are on a linux box :) */
/* if you want to compile with back_less_color remove -DMANY_COLORS */
EXTRA_DEFINES = -DMANY_COLORS  /* -Dlinux */

SRCS = get_load.c wmavgload.c
OBJS = get_load.o wmavgload.o

ComplexProgramTarget(wmavgload)