File: Makefile.utils

package info (click to toggle)
netmaze 0.81%2Bjpg0.82-12
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,208 kB
  • ctags: 912
  • sloc: ansic: 8,277; tcl: 1,223; makefile: 60; sh: 26
file content (24 lines) | stat: -rw-r--r-- 559 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
CC = gcc

CFLAGS = -DSH_MEM -O2 -Wall -m486 -fomit-frame-pointer -I/usr/include/X11
#CFLAGS = -DSH_MEM -g -Wall -m486 -I/usr/include/X11
XTLIBS = -lm -lXaw -lXt -lXext -lX11
X11LIBS = -lX11
XMLIBS = -lXm -lXt -lX11

#CFLAGS = +Aa +O2 -I/usr/include/Motif1.1
#XMLIBS = -L/usr/lib/Motif1.2 -L/usr/lib/X11R5

all: x11mouse xmmenu xmserv

x11mouse: x11mouse.o
	$(CC) -o $@ x11mouse.o $(X11LIBS)

xmmenu: xmmenu.o
	$(CC) -o $@ xmmenu.o $(XMLIBS)

xmserv: xmserv.o
	$(CC) -o $@ xmserv.o $(XMLIBS)

texture: texture.o
	$(CC) -o $@ texture.o -static -lXext -lX11 -lm