# GNU Makefile for the X11 part of the PTC 2.0 C++ API
# Copyright (c) 1998 Christian Nentwich (brn@eleet.mcb.at)
# The PTC 2.0 C++ API is (c) 1998 Glenn Fiedler (ptc@gaffer.org)
# This package is licensed under the GNU LGPL
#
# Please refer to the file COPYING.LIB contained in the distribution for
# licensing conditions 

include ../Makefile.config

all: Console Link Timer

Console: Console.o
	$(CC) Console.o $(PTCLIB) $(PTC_X_LIBRARIES) -o $@

Link: Link.o
	$(CC) Link.o $(PTCLIB) $(PTC_X_LIBRARIES) -o $@      

Timer: Timer.o
	$(CC) Timer.o $(PTCLIB) $(PTC_X_LIBRARIES) -o $@      

clean:
	rm -f *.o

distclean:
	rm -f *.o
	rm -f Console Link Timer
