

default:: 	all

CC            = gcc
CFLAGS        = -g -V 2.6.3
LDFLAGS	      = -g

OBJS	      = link.o 
SRCS	      = link.c 

TEST_TARGETS 	= test

# targets
all::	 	$(TEST_TARGETS)

test:		$(OBJS) test.o
		@echo Making test
		$(CC) $(LDFLAGS) $(OBJS) test.o -o test

perf: 		...
                ...

.c.o:		
		$(CC) $(CFLAGS) -c $*.c -o $*.o

# dependencies
test.o: 	test.c defs.h

link.o: 	link.c link.h defs.h

perf.o: 	...








