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