head	1.4;
access;
symbols;
locks; strict;
comment	@# @;


1.4
date	97.01.18.14.31.43;	author ram;	state Exp;
branches;
next	1.3;

1.3
date	94.10.29.03.11.24;	author ram;	state Exp;
branches;
next	1.2;

1.2
date	94.10.27.19.15.39;	author ram;	state Exp;
branches;
next	1.1;

1.1
date	92.11.11.14.31.25;	author garland;	state Exp;
branches;
next	;


desc
@Makefile for motifd server.
@


1.4
log
@Werkowskis source kit 1.03.7
@
text
@CC = gcc
LIBS = -lXm -lXt -lX11
CFLAGS = -O
LDFLAGS =

TARGET = motifd
OBJS = main.o server.o translations.o packet.o message.o datatrans.o \
       requests.o callbacks.o widgets.o resources.o tables.o motif.o \
       text.o xmstring.o list.o events.o

include Config

$(TARGET) : $(OBJS)
	$(CC) -o $(TARGET) $(LDFLAGS) $(OBJS) $(LIBS)

tables.o : tables.c StringTable.h ClassTable.h TypeTable.h
	$(CC) $(CFLAGS) -c $<

requests.o : requests.c Interface.h
	$(CC) $(CFLAGS) -c $<
@


1.3
log
@no timer support for now.
@
text
@d9 1
a9 1
       text.o xmstring.o list.o events.o # timer-support.o
d17 1
a17 1
	$(CC) $(CFLAGS) -c tables.c
d20 1
a20 1
	$(CC) $(CFLAGS) -c requests.c
@


1.2
log
@Move plamform specific make stuff to Config.
@
text
@d9 1
a9 1
       text.o xmstring.o list.o events.o timer-support.o
@


1.1
log
@Initial revision
@
text
@d1 4
a4 2
CC = cc
#CC = gcc
d6 1
a6 15
#
# Places to look for X and Motif headers
XHDR  = -I/usr/misc/.X11/include
XMHDR = -I/usr/misc/.motif/include

#
# Places to look for X and Motif libraries
XLIB  = -L/usr/misc/.X11/lib
XMLIB = -L/usr/misc/.motif/lib

#
# -G 0 option is for MIPS only
CFLAGS = -O -G 0 $(XHDR) $(XMHDR)
LDFLAGS = -G 0 $(XLIB) $(XMLIB)
LIBS = -lXm -lXt -lX11
d9 1
a9 2
       text.o xmstring.o list.o events.o
TARGET = motifd
d11 1
a14 1
	strip $(TARGET)
@
