
OBJS = structest.o 
FLAGS =  -g

test:	$(OBJS)
	gcc -o test $(FLAGS) $(OBJS)

structtest.o:	structest.c
	gcc -c structest.c

clean:	
	rm *.o
