#  This is a simple makefile for X11 graphics
#  Remember to "attach X11" to provide access to X for the linker


SOURCE = graph.c  servicenew.c


OBJECTS = graph.o servicenew.o


graph : $(OBJECTS)
	cc  $(OBJECTS)  -o graph  -lc -lm -lX11

graph.o : graph.c
	cc -c -g  graph.c

servicenew.o : servicenew.c
	cc -c -g servicenew.c

