From 5a8dd0450b7f8cde3e1d27199e50a27482e3bffb Mon Sep 17 00:00:00 2001 From: Dimitri Sokolyuk Date: Thu, 25 Aug 2011 08:58:52 +0000 Subject: Tek clock --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5e172cc --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +# $Id$ + +CFLAGS+= -Wall +PROG= tekclock +SRCS= tekclock.c tekplot.c +OBJS= $(SRCS:.c=.o) +LDFLAGS+= -lm + +$(PROG): $(OBJS) + +clean: + @rm -f $(PROG) *.core core *.o -- cgit v1.2.3