1 2 CFLAGS += -Wall 3 OBJS = tagp_ki.o user_tagp.o 4 5 test_agp: $(OBJS) 6 $(CC) $(CFLAGS) $(LDFLAGS) $^ -o $@ 7 8 clean: 9 rm -f $(OBJS) test_agp 10