summaryrefslogtreecommitdiff
path: root/src/glw/Makefile.X11
blob: b38ef50d4c7edba676d71fd23f5928b535d51d5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Makefile for SGI's OpenGL widgets


##### MACROS #####

MAJOR = 1
MINOR = 0
TINY = 0

TOP = ../..

VPATH = RCS

INCDIRS = -I$(TOP)/include -I/usr/include/Motif1.2 -I/usr/contrib/X11R6/include -I/usr/X11R6/include
LIBDIR = $(TOP)/lib

# Use these sources for Motif (and Xt) support.  Requires Motif header files.
#SOURCES = GLwDrawA.c GLwMDrawA.c

# OR, use these sources for non-Motif (Xt only) build:
SOURCES = GLwDrawA.c


OBJECTS = $(SOURCES:.c=.o)



##### RULES #####

.c.o:
	$(CC) -c $(INCDIRS) $(CFLAGS) $<



##### TARGETS #####

default:
	@echo "Specify a target configuration"

clean:
	-rm -f *.o *~

targets: $(LIBDIR)/$(GLW_LIB) message


# Make the library
$(LIBDIR)/$(GLW_LIB): $(OBJECTS)
	$(TOP)/bin/mklib -o GLw -major $(MAJOR) -minor $(MINOR) \
		-patch $(TINY) $(GLW_LIB_DEPS) -install $(LIBDIR) \
		$(MKLIB_OPTIONS) $(OBJECTS)


message:
	@echo
	@echo "************************************************************************"
	@echo "*** Edit widgets-sgi/Makefile.X11 to enable Motif support, if needed ***"
	@echo "************************************************************************"
	@echo


include $(TOP)/Make-config

include depend



#
# Run 'make depend' to update the dependencies if you change what's included
# by any source file.
# 
dep: $(SOURCES)
	makedepend -fdepend -Y -I$(TOP)/include $(SOURCES)