home *** CD-ROM | disk | FTP | other *** search
Makefile | 1999-06-25 | 640 b | 23 lines |
- all: wtserver
-
- OBJS=wtserver.o wtsrvmsg.o wtcomm.o wtapi.o
- #OPTS=-DDEBUG
-
- wtserver: $(OBJS)
- gcc -o wtserver $(OBJS) $(DEFS) -L/usr/X11R6/lib/ -lXm -lXt -lX11
-
- wtserver.o: wtserver.c wtserver.h wtserver.xbm
- gcc -g -c $(OPTS) $(DEFS) -I. -I.. -I/usr/include wtserver.c
-
- wtsrvmsg.o: wtsrvmsg.c wtserver.h
- gcc -g -c $(OPTS) $(DEFS) -I. -I.. -I/usr/include wtsrvmsg.c
-
- wtcomm.o: ../wtcomm.c ../wtcomm.h ../wtapi.h
- gcc -g -c $(OPTS) $(DEFS) -DWTAPI_SERVER -I. -I.. -I/usr/include ../wtcomm.c
-
- wtapi.o: ../wtapi.c ../wtapi.h ../wtcomm.h
- gcc -g -c $(OPTS) $(DEFS) -DWTAPI_SERVER -I. -I.. -I/usr/include ../wtapi.c
-
- clean:
- rm -f *.o wtserver
-