OBJS := helloworld.o helloworld.exe: $(OBJS) $(CC) $^ -o $@ helloworld.o: helloworld.c $(CC) $(CFLAGS) -c $< -o $@ clean: rm -f *~ *.exe *.i *.ii *.o *.s