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