File: Makefile

package info (click to toggle)
netmaze 0.81%2Bjpg0.82-3
  • links: PTS
  • area: main
  • in suites: potato
  • size: 1,188 kB
  • ctags: 911
  • sloc: ansic: 8,277; tcl: 1,223; makefile: 58; sh: 16
file content (21 lines) | stat: -rw-r--r-- 430 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
CC = gcc

CFLAGS = -O2 -Wall -m486 -fomit-frame-pointer -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)