File: makefile.hpux

package info (click to toggle)
snd 3.4-4
  • links: PTS
  • area: main
  • in suites: potato
  • size: 5,148 kB
  • ctags: 12,594
  • sloc: ansic: 86,516; lisp: 3,480; sh: 1,507; makefile: 119
file content (19 lines) | stat: -rw-r--r-- 677 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Snd make file for HPUX
# 
# edit the include and library paths below (or omit XPM altogether) before calling make
# XPM is used only to make some optional cute icons
# if you have the Guile library, include -DHAVE_GUILE in CFLAGS and -lguile in LIBS

#XPM_INCLUDE = -I(add include path here)
#XPM_LIB     = -L(add library path here)

CC          = gcc
CFLAGS      = -g -O2 -DXPM -DHPUX $(XPM_INCLUDE)
LIBS        = -lMrm -lXm -lXpm -lXt -lXext -lX11 -lm $(XPM_LIB)

include makesnd.files

snd:    $(SNDLIB_HEADERS) $(SND_HEADERS) $(SND_X_HEADERS) $(SNDLIB_O_FILES) $(O_FILES) $(X_O_FILES)
	$(CC) $(SNDLIB_O_FILES) $(O_FILES) $(X_O_FILES) -o snd $(LIBS)

include makesnd.back