File: makefile.cygwin

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 (21 lines) | stat: -rw-r--r-- 781 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
# make file for snd in Windows 95 with Cygwin gcc and X11/motif
# The X11/Motif libraries are available at 
#   http://dao.gsfc.nasa.gov/
#   ftp://dao.gsfc.nasa.gov/pub/uwm_coads/X11R6.3/b19_X11R6_3.tar.gz
# The Cygnus Gnu development tools are available at 
#   http://sourceware.cygnus.com/cygwin/
#   ftp://go.cygnus.com/pub/sourceware.cygnus.com/cygwin/
# There is a free X server available from MicroImages, but I
#   was unable to get it to work.

CC = gcc
CFLAGS = -O2 -DWINDOZE -I/usr/X11R6.3/include

LIBS = -L/usr/X11R6.3/lib -lXm -lXpm -lXt -lSM -lICE -lX11 -lm

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